fish: Remove git status -s abbreviation

It turns out that the short version of git status is not as informative
as the regular git status, making it impractical to use.
This commit is contained in:
Donovan Glover 2018-12-03 18:43:21 -05:00
parent 3b2fee629f
commit 8b490aa2d0
No known key found for this signature in database
GPG Key ID: EA7408A77AE1BE65

View File

@ -43,12 +43,11 @@ if not set -q set_abbr
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"
abbr gr "git reset HEAD~" # Undo the last commit but keep changed files
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 gs "git status"
abbr gt "git tag"
abbr gts "git tag -s"