git clone <https://name-of-the-repository-link>
git branch <branch-name>
git push -u <remote> <branch-name>
git branch or git branch --list
git branch -d <branch-name>
git checkout <name-of-your-branch>
git checkout -b <name-of-your-branch>
git status
git log
git log --oneline
git add <file>
git add -A
git commit -m "commit message"
git push <remote> <branch-name>
git push --set-upstream <remote> <name-of-your-branch>
OR git push -u origin <branch_name>
git pull <remote>
git revert XXXXXXX
git checkout dev
git fetch
git merge <branch-name>