Below mentioned commands are used frequently in our environment.
| Commands | description |
|---|---|
| git clone | copy a remote repository into local machine |
| git pull | get the changes made in remote repository by the team members |
| git status | shows the status of changes as untracked, modified, or staged. |
| git add | staged/add the changes |
| git checkout -b | to take local branch from remote branch |
| git branch -r | list the branches |
| git log | get the details about commits that made on branch/repository |