[FIX][GIT] Alias to fixup skips other fixups
This commit is contained in:
parent
11890af357
commit
537e88320a
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue