Created
June 18, 2023 17:31
-
-
Save mihai-vlc/244c54528967086d3af1dc2f2e426533 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function gtcmf { | |
$hash = $(git log --grep=fixup --invert-grep --max-count=1 --pretty=%h) | |
git commit --fixup $hash | |
} | |
function gtfix { | |
$hash = $(git log --grep=fixup --invert-grep --max-count=1 --pretty=%h) | |
git rebase --interactive --rebase-merges --autostash --autosquash $hash^ | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment