The filter-branch tag has no wiki summary.
7
votes
1answer
1k views
Splitting a set of files within a git repo into their own repository, preserving relevant history [duplicate]
Possible Duplicate:
How to split a git repository while preserving subdirectories?
At one point I added my code to an existing git repo, and have committed to it quite a lot since, while ...
6
votes
2answers
1k views
How can I rewrite history so that all files are in a subdirectory?
I have a project under git. One day I moved all project files from current directory to foo/bar/ under the project. I did it using git mv. Then I added some more files and did some changes to already ...
2
votes
2answers
1k views
filter-branch to remove extra directory
I'm migrating several Subversion repositories to Git, but they were set up a bit weird: the standard trunk/branches/tags structure lives within several subdirectories of the repository. /branches and ...
15
votes
2answers
2k views
Git - remove commits with empty changeset using filter-branch
How do I remove commits which have no changeset using git filter-branch?
I rewrote my git history using:
git filter-branch --tree-filter 'rm -r -f my_folder' -f HEAD
this worked out well but now I ...