- Git status
- Git add and remove
- Git branch
- Git commit
- Git checkout
- Git fetch
- Git pull
- Git push
- Git rebase
- Git stash
- Git diff and log
- Back to main page
- g:
git status -sb
- ga:
git add
- gr:
git rm
- gb:
git branch -v
- gc:
git commit
- gca:
git commit --amend
- gcm:
git commit -m
- gcod:
git checkout develop
- gcom:
git checkout master
- gcos:
git checkout staging
- gf:
git fetch
- gfa:
git fetch --all
- gp:
git pull --rebase
- gprod:
git pull --rebase origin develop
- gprom:
git pull --rebase origin master
- gpros:
git pull --rebase origin staging
- gprud:
git pull --rebase upstream develop
- gprum:
git pull --rebase upstream master
- gprus:
git pull --rebase upstream staging
- gpod:
git push origin develop
- gpom:
git push origin master
- gpos:
git push origin staging
- gpud:
git push upstream develop
- gpum:
git push upstream master
- gpus:
git push upstream staging
- gra:
git rebase --abort
- grc:
git rebase --continue
- grd:
git rebase develop
- gri:
git rebase -i
- grm:
git rebase master
- grs:
git rebase staging
- gsl:
git stash list
- gsp:
git stash pop
- gss:
git stash save
- gd:
git diff --color-words
- gl:
git log --oneline --decorate