Skip to content

Instantly share code, notes, and snippets.

@hatzopoulos
Last active August 29, 2015 14:27
Show Gist options
  • Save hatzopoulos/b7d81566b506062d6e14 to your computer and use it in GitHub Desktop.
Save hatzopoulos/b7d81566b506062d6e14 to your computer and use it in GitHub Desktop.
rewrite-history.bash
#!/bin/bash
# usage:
# cd ~/your-repo
# git filter-branch --prune-empty --tree-filter ~/rewrite-history.bash
if [[ ! -e httpdocs ]]; then
mkdir -p httpdocs
git ls-tree --name-only $GIT_COMMIT | grep -v ^'.gitignore\|.gitattributes'$ | xargs -I files mv files httpdocs
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment