This commit is contained in:
2018-12-28 18:19:00 +01:00
parent ab9d28353b
commit cb34056f15
23 changed files with 214 additions and 106 deletions

View File

@@ -15,7 +15,7 @@
fe = "fetch --all --prune"
co = "checkout"
cm = "commit --message"
cm = "!f() { git commit --message \"$*\" ; };f"
ci = "commit"
st = "status"
br = "branch"
@@ -46,6 +46,17 @@
drop = !git rebase --onto $1^ --
up = !git pull --rebase --prune $@ && git submodule update --init --recursive && git branch-clean
save = "!f() { set -x ; if ! [ $1 ]; then echo 'usage: git save <branch name>'; return 1; fi; git add -A && git commit -m 'SAVEPOINT' && git branch save-$1 && git reset --hard HEAD~1; };f"
;save = !f(){echo "x$1x" && test -n $1 && echo "wat $?" && }; echo x$1x ; f()
anchor = "!f() { if ! [ $1 ]; then echo 'usage: git anchor <anchor name>'; return 1; fi; git branch anchor-$1 ; };f"
load = reset HEAD~1 --mixed
amend = commit -a --amend
wipe = !git add -A && git commit -m 'WIPE SAVEPOINT' && git reset HEAD~1 --hard
exec = "!exec "
[core]
fileMode = true
whitespace = "blank-at-eol,space-before-tab,blank-at-eof"