1
0
forked from extern/nix-config

fish: Remove --verbose flag from git branch abbreviation

Now that I understand more about how `git branch` works, I really use
it for more than just the --verbose flag.
This commit is contained in:
Donovan Glover 2019-01-01 13:57:04 -05:00
parent e37ea93566
commit 1777de5b11
No known key found for this signature in database
GPG Key ID: EA7408A77AE1BE65

View File

@ -40,7 +40,7 @@ if not set -q set_abbr
abbr ga "git add"
abbr gaa "git add --all"
abbr gap "git add --patch"
abbr gb "git branch --verbose" # List all branches
abbr gb "git branch" # List all branches
abbr gc "git commit -m"
abbr gca "git commit --amend"
abbr gco "git checkout"