Skip to content

Instantly share code, notes, and snippets.

@fabiendem
Created May 16, 2020 18:56
Show Gist options
  • Save fabiendem/ee81f3bcde3ede03b723721230962c85 to your computer and use it in GitHub Desktop.
Save fabiendem/ee81f3bcde3ede03b723721230962c85 to your computer and use it in GitHub Desktop.
Git aliases
alias.ec=config --global -e
alias.co=checkout
alias.cob=checkout -b
alias.ci=commit
alias.st=status
alias.br=branch
alias.di=diff
alias.dl=pull
alias.up=push
alias.lga=log --graph --pretty=oneline --abbrev-commit --decorate --all
alias.brnm=branch --no-merged
alias.brm=branch --merged
alias.undolastci=reset --soft 'HEAD^'
alias.l=log
alias.l1=log --oneline --decorate
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment