Skip to content

Instantly share code, notes, and snippets.

@biantris
Last active October 17, 2021 15:52
Show Gist options
  • Save biantris/4fae05faa74639500de8b6026dddf39c to your computer and use it in GitHub Desktop.
Save biantris/4fae05faa74639500de8b6026dddf39c to your computer and use it in GitHub Desktop.

aliases

  • ck = git checkout (git config --global alias.ck checkout)
  • br = git branch (git config --global alias.br branch)
  • co = git commit (git config --global alias.co commit)
  • st = git status (git config --global alias.st status)
  • pl = git pull (git config --global alias.pl pull)
  • ps = git push (git config --global alias.ps push)

tutorial config: https://www.atlassian.com/br/git/tutorials/git-alias

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment