Last active
July 23, 2019 18:14
-
-
Save cowlicks/0368adf4fa4034fd5fd4ada6962f496c to your computer and use it in GitHub Desktop.
split a git commit per file
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 | |
# to split all commits since origin/master run: | |
# git rebase --interactive --exec git-split.sh origin/master | |
set -e | |
LF=$'\n' | |
SHA=$(git rev-parse --short HEAD) | |
MSG=$(git show -s --format=%B HEAD) | |
set -f; IFS=$'\n' | |
FILES=($(git diff-tree --no-commit-id --name-only -r HEAD)) | |
set +f; unset IFS | |
git reset HEAD^ | |
for f in "${FILES[@]}"; do | |
git add "$f" | |
git commit -m "$SHA $f$LF$LF$MSG" | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment