git checkout -b <branchname1> <remote>/<branchname2>
git branch
git push
git pull <remote>
git restore --staged
git branch <branchname>
git commit -a
git add -A
git diff <commitA> --name-only
git merge <branchname>
git branch -M <branchname>
git pull
git diff HEAD
git init
git add <pathname>
git fetch
git status -s
git rm --cached <pathname>
git log -<number>
git checkout <branchname>
git branch -v
git commit -m <message>
git config pull.rebase false
git diff --staged
git restore .
git reflog
git clone <repo_url>
git checkout -b <branchname>
git log
git rm <pathname>
git branch -m <old_branchname> <new_branchname>
git restore --staged <pathname>
git rm -f <pathname>
git branch -d <branchname>
git status
git checkout --<pathname>
git push -n
git log --oneline
git diff HEAD~ HEAD
git push <remote> <branchname>
git shortlog
git log --oneline --graph
git checkout HEAD <pathname>
git diff HEAD --stat
git add -p
git stash pop
git log ..<branchname>
git reset HEAD <pathname>
git clone <repo_url> <local_repo_name>
git diff HEAD HEAD^
git commit --amend -m <message>
git prune
git cherry-pick <commitA>
git diff <branchname1>..<branchname2>
git branch -vv
git log --all --grep=<searchterm>
git branch -r
git branch -D <branchname>
git rebase <branchname>
git push origin -d <branchname>
git blame <pathname>
git stash
git log --all -- <filepath>
git checkout -
git stash push -m <message>
git diff --stat
git revert <commit>
git stash save <message>
git show <commit>
git reset <commit>
git remote add origin <repo_url>
git reset -- <pathname>
git add .
git stash show -p
git stash -u
git checkout -m <branchname>
git stash clear
git branch -a --contains <commit>
git config --global user.name <username>
git remote set-url origin <url>
git reset <commit> --merge
git mv -f <oldfilepath> <newfilepath>
git cherry-pick <commitA>^..<commitB>
git checkout --theirs <pathname>
git log --author=<author>
git checkout --ours <pathname>
git pull --ff-only upstream <branchname>
git reset --hard
git grep -i "search pattern"
git merge <branchname1> <branchname2>
git diff @{upstream}
git log --since=<date_or_time>
git tag <version_number>
git show --name-status <commit>
git push -u <remote> <branchname>
git ls-files
git rev-parse --symbolic-full-name --abbrev-ref HEAD
git bisect start
git pull --rebase
git rebase <branchname> -i
git reset --hard HEAD~1
git --no-pager diff
git stash -k
git clean -fd
git rebase -i HEAD~<number>
git gc
git remote prune origin
git stash apply stash@{<number>}
git rebase -i --autosquash HEAD~n
git reset --soft HEAD~1
git log -p
git config --global pager.branch false
git checkout --orphan <branchname>
git checkout -t <remote>/<branchname>
git checkout -b <branchname> <commit>
git rev-list --all -- <pathname>
git stash --keep-index
git config --global user.name <username> --replace-all
git config --global push.default current
git add --patch
git cherry-pick -n <commitA>
git stash push -p -m <message>
git fetch --prune
git revert HEAD
git remote set-head origin --auto
git log --show-signature
git blame -C
git rev-list --all --objects
git blame -w
git merge --no-ff <branchname>
git diff <commitA> --name-status
git commit --no-verify
git push --tags
git blame -L <start,end> <filepath>
git add --edit
git log <commitA>..<commitB>
git add -i
git merge-base <branchname1> <branchname2>
git rebase --rebase-merges <branchname>
git stash apply
git reset --mixed HEAD~1
git config --local --list
git config --global --list
git log --pretty=format:<format_string>
git tag -a <version_number> -m <message>