Remove push options from git alias

This commit is contained in:
Gabriel Augendre 2023-04-06 13:50:34 +02:00
parent 573bc9bc4e
commit 88e3ae87f5

View file

@ -36,7 +36,7 @@
syn = ! "git pull --rebase && git push"
gone = ! "git fetch -p && git for-each-ref --format '%(refname:short) %(upstream:track)' | awk '$2 == \"[gone]\" {print $1}' | xargs -r git branch -D"
praise = blame
pushbranch = ! "git push -o merge_request.create -u origin $(git rev-parse --abbrev-ref HEAD)"
pushbranch = ! "git push -u origin $(git rev-parse --abbrev-ref HEAD)"
pushu = pushbranch
pushf = push -f
cobf = ! "f() { git branch -D $1 && git switch -c $1; }; f"