We use git commands in the day to day work, below are the most common git commands I could think of.
- Create a new branch
- git branch <branchName>
- git checkout <branchName>
- git checkout -b <branchName>
- git fetch
- git branch
- git branch -r
- git pull
- git pull origin <branchName>