Created
May 24, 2020 14:20
-
-
Save cdunham/47d7b6e7959432a5c4177d9dd99cf0f2 to your computer and use it in GitHub Desktop.
This file contains hidden or 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/sh | |
set -e | |
# git snap: (re-)commit a snapshot of exactly another commit | |
# an alternative to 'pick' in git rebase -i: use x git snap <sha> | |
if [ -z "$1" ]; then | |
echo "usage: git snap <commit sha1>" | |
exit | |
fi | |
case `git cat-file -t $1` in | |
commit) ;; | |
*) | |
echo "$1 is not a git commit" | |
exit | |
;; | |
esac | |
SHA=$1 | |
git read-tree $SHA^{tree} | |
git commit -C $SHA | head -n1 | |
git reset --hard --quiet |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment