Skip to content
GitLab
Projects Groups Snippets
  • /
  • Help
    • Help
    • Support
    • Community forum
    • Submit feedback
  • Sign in
  • Git Beginners Git Beginners
  • Project information
    • Project information
    • Activity
    • Labels
    • Members
  • Issues 1
    • Issues 1
    • List
    • Boards
    • Service Desk
    • Milestones
    • Iterations
    • Requirements
  • Monitor
    • Monitor
    • Incidents
  • Analytics
    • Analytics
    • Value stream
    • Insights
    • Issue
  • Wiki
    • Wiki
  • Activity
  • Create a new issue
  • Issue Boards
Collapse sidebar
  • Computer-ScienceComputer-Science
  • Git BeginnersGit Beginners
  • Wiki
  • Home

Home · Changes

Page history
Update Home authored Jul 20, 2018 by Andrew James Collett's avatar Andrew James Collett
Hide whitespace changes
Inline Side-by-side
Home.md
View page @ dc659fd3
...@@ -27,12 +27,12 @@ Command | Effect ...@@ -27,12 +27,12 @@ Command | Effect
### Simple Git flow ### Simple Git flow
Command | Effect Command | Effect
--- | --- --- | ---
`git pull` | Fetch the latest code from the GitLab server and update your local copy. `git pull` | Fetch the latest code from the GitLab server and update your local copy.
`git status` | Show the current status of the local working tree. `git status` | Show the current status of the local working tree.
`git diff <file or folder>` | Show changes from the file or all files if none specified. `git diff <file or folder>` | Show changes from the file or all files if none specified.
`git add <file or folder>` | Add the specific file or folder to the index. `git add <file or folder>` | Add the specific file or folder to the staging area.
`git commit` | Move `git commit` | Move the changes from the staging area to `HEAD` on your local machine
`git push` | `git push` | Send the commits on your local machine to the GitLab server
## First time using GitLab ## First time using GitLab
......
Clone repository
  • Home