Last active
May 14, 2021 03:14
-
-
Save k06a/25a0214c98bc19fd6817 to your computer and use it in GitHub Desktop.
Git remove some dirs
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
# Analyze | |
git ls-tree -r -t -l --full-name HEAD | sort -n -k 4 | |
# Delete | |
#git filter-branch --index-filter 'git rm -r --cached --ignore-unmatch dir1' HEAD | |
git filter-branch --tree-filter 'rm -rf dir1' --prune-empty --tag-name-filter cat -- --all | |
# Cleanup | |
#git update-ref -d refs/original/refs/heads/master | |
#git show-ref refs/original/* --hash | xargs -n 1 git update-ref -d | |
git for-each-ref --format="%(refname)" refs/original/ | xargs -n 1 git update-ref -d | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment