Skip to content

Instantly share code, notes, and snippets.

@cowlicks
Last active July 23, 2019 18:14
Show Gist options
  • Save cowlicks/0368adf4fa4034fd5fd4ada6962f496c to your computer and use it in GitHub Desktop.
Save cowlicks/0368adf4fa4034fd5fd4ada6962f496c to your computer and use it in GitHub Desktop.
split a git commit per file
#!/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