Skip to content

Instantly share code, notes, and snippets.

@mongris
Created February 21, 2013 11:49
Show Gist options
  • Save mongris/5004223 to your computer and use it in GitHub Desktop.
Save mongris/5004223 to your computer and use it in GitHub Desktop.
Remove sub directory from git: git-rmsubdir.sh gitrepo subdir
#!/bin/bash
#
# git-rmsubdir.sh
#
cd $1
git filter-branch --index-filter "git rm -r -f --cached --ignore-unmatch $2" --prune-empty HEAD
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment