Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save 6220119/d3133add7e8d1dab7012743f2c6dcc1a to your computer and use it in GitHub Desktop.
Save 6220119/d3133add7e8d1dab7012743f2c6dcc1a to your computer and use it in GitHub Desktop.
My Git Alias
git config --global alias.st "status -s -b"
git config --global alias.di "diff"
git config --global alias.co "checkout"
git config --global alias.ci "commit"
git config --global alias.br "branch"
git config --global alias.l "log --online --decorate --graph"
git config --global alias.fixup "commit --amend -C HEAD"
git config --global alias.timeline "log --graph --branches --pretty=online --decorate"
git config --global alias.untracked-files "ls-files -o --exclude-standard"
git config --global alias.ignored-files "ls-files --others -i --exclude-standard"
git config --global alias.modified-files "ls-files -m"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment