1
0
forked from extern/nix-config

fish: Add git merge and git tag abbreviations

This commit is contained in:
Donovan Glover 2018-12-03 12:33:05 -05:00
parent 86573141fc
commit 3b2fee629f
No known key found for this signature in database
GPG Key ID: EA7408A77AE1BE65

View File

@ -41,6 +41,7 @@ if not set -q set_abbr
abbr gg "git grep"
abbr gi "git init"
abbr gl "git log --oneline --decorate --all --graph -n 10"
abbr gm "git merge"
abbr gp "git push" # Push your commits to a remote server
abbr gs "git status"
abbr gss "git status -s"
@ -48,6 +49,8 @@ if not set -q set_abbr
abbr gre "git remote --verbose" # List all remotes
abbr grh "git reset HEAD"
abbr grr "git reset --hard HEAD~" # Remove the last commit and all changes with it
abbr gt "git tag"
abbr gts "git tag -s"
abbr t "task"
abbr ta "task add"