Bump emacs.d tweak clean-branches git alias.
This commit is contained in:
parent
ab8f081be2
commit
689f7e524a
@ -1 +1 @@
|
||||
Subproject commit bdd1bd0e3bc2f989e268147e0569540028d2ba34
|
||||
Subproject commit 05b3bc8255770dd10aa6c513b2b2ebb8689b0096
|
@ -44,7 +44,7 @@
|
||||
reb = "!r() { git rebase -i HEAD~$1; }; r"
|
||||
# Diff a file or show it in git's pager if it is untracked
|
||||
du = "!d() { git ls-files $1 --error-unmatch 2>/dev/null 1>/dev/null && git diff $1 || `git config --get core.pager` $1; }; d"
|
||||
clean-branches = "!r() { git branch -r --merged ${1-origin/master} | xargs -n1 git branch -d; }; r"
|
||||
clean-branches = "!r() { git branch --merged ${1-origin/master} | grep -v '*' | xargs -n1 git branch -d; }; r"
|
||||
diff-excluding = "!f() { exclude=$1; shift; git diff $1 $2 --name-only | grep -v $exclude | xargs git diff "$@" --; }; f"
|
||||
aliases = "!f() { git config --get-regexp ^alias | cut -c 7-; }; f"
|
||||
file-exists = "!f() { git ls-files $1 --error-unmatch > /dev/null 2> /dev/null; }; f"
|
||||
|
Loading…
Reference in New Issue
Block a user