[FIX][GIT] Alias to fixup skips other fixups

This commit is contained in:
Bruno BELANYI 2020-07-15 18:09:46 +02:00
parent 11890af357
commit 537e88320a

View file

@ -71,7 +71,7 @@
unassume = update-index --no-assume-unchanged
assumed = "!git ls-files -v | grep ^h | cut -c 3-"
push-new = "!git push -u \"${1:-origin}\" \"$(git branch | grep '^* ' | cut -f2- -d' ')\""
fixup = "!f() { git add -- \"$1\"; git commit --fixup \"$(git log -n 1 --pretty=format:%H -- \"$1\")\"; }; f"
fixup = "!f() { git add -- \"$1\"; git commit --fixup \"$(git log --pretty=format:%H:%s -- \"$1\" | awk -F ':' '!/fixup!/ {print $1; exit}')\"; }; f"
[filter "lfs"]
clean = git-lfs clean -- %f