Skip to content

Instantly share code, notes, and snippets.

@MrBliz
Last active June 29, 2023 08:15
Show Gist options
  • Save MrBliz/4f48395a6ebe81a3b980f988d2e724f9 to your computer and use it in GitHub Desktop.
Save MrBliz/4f48395a6ebe81a3b980f988d2e724f9 to your computer and use it in GitHub Desktop.
Git Alias'
[alias]
po = !git push origin
fu = !git fetch upstream
mum = !git merge upstream/main
cm = !git checkout main
mums = !git merge upstream/main
cms = !git checkout main
pushup = !git push -u origin
cob = !git checkout -b
com = !git commit -am
mm = !git merge main
mms = !git merge master
remup =!git remote add upstream
lconf = !git config --list --show-origin
co = !git checkout
st = !git stash -u
pop = !git stash pop
pullr = !git pull --rebase
undo = !git reset HEAD~1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment