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
#!/bin/bash -e | |
# | |
# git-fixup - creates a fixup commit and squashes it into the given commit using a rebase. | |
# | |
# Usage: | |
# git fixup <commit> [args...] | |
# | |
# Options: | |
# <commit> The commit to "fix up". | |
# [args...] These arguments are passed verbatim to git-rebase. |