Detach subdirectory into separate git repository - Stack Overflow most recent 30 from stackoverflow.com2009-12-11T15:41:11Zhttp://stackoverflow.com/feeds/question/359424http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/359424/detach-subdirectory-into-separate-git-repository31Detach subdirectory into separate git repositorymatli2008-12-11T13:57:03Z2009-10-19T23:14:19Z
<p>I have a git repository which contains a number of subdirectories. Now I have found that one of the subdirectories is unrelated to the other and should be detached to a separate repository.</p>
<p>How can i do this while keeping the history of the files within the subdirectory? I guess I could make a clone and remove the unwanted parts of each clone, but I suppose this would give me the complete tree when checking out an older revision etc. This might be acceptable, but I would prefer to be able to pretend that the two repositories doesn't have a shared history.</p>
<p>Any suggestions?</p>
<p>Just to make it clear, I have the following structure:</p>
<pre><code>XYZ/
.git/
XY1/
ABC/
XY2/
</code></pre>
<p>But would like this instead:</p>
<pre><code>XYZ/
.git/
XY1/
XY2/
ABC/
.git/
</code></pre>
http://stackoverflow.com/questions/359424/detach-subdirectory-into-separate-git-repository/359759#35975939Answer by Paul for Detach subdirectory into separate git repositoryPaul2008-12-11T15:40:54Z2008-12-15T18:49:02Z<p>You want to clone your repository and then use <code>git filter-branch</code> to mark everything but the subdirectory you want in your new repo to be garbage-collected. To clone your local repository:</p>
<pre><code> $ git clone --no-hardlinks /XYZ /ABC
</code></pre>
<p>The --no-hardlinks switch makes git use real file copies instead of hardlinking when cloning a local repository. The garbage collection and pruning actions will only work on blobs (file contents), not links.</p>
<p>Then just filter-branch and reset to exclude the other files, so they can be pruned:</p>
<pre><code> $ git filter-branch --subdirectory-filter ABC HEAD
$ git reset --hard
$ git gc --aggressive
$ git prune
</code></pre>
<p>and now you have a local git repository of the ABC sub-directory with all its history preserved. </p>
<p>EDIT -- For most uses, <code>git filter-branch</code> should have the added parameter <code>-- --all</code>. (Yes that's really dash dash space dash dash <code>all</code>. This needs to be the last parameters for the command.) As Matli discovered, this keeps the project branches and tags included in the the new repo. </p>
http://stackoverflow.com/questions/359424/detach-subdirectory-into-separate-git-repository/955793#9557936Answer by pgs for Detach subdirectory into separate git repositorypgs2009-06-05T13:15:20Z2009-06-05T13:15:20Z<p>Paul's answer above creates a new repository containing /ABC, but does not remove /ABC from within /XYZ. The following command will remove /ABC from within /XYZ:</p>
<pre><code>git filter-branch --tree-filter "rm -rf ABC" --prune-empty HEAD
</code></pre>
<p>Of course, test it in a 'clone --no-hardlinks' repository first, and follow it with the reset, gc and prune commands Paul lists.</p>
http://stackoverflow.com/questions/359424/detach-subdirectory-into-separate-git-repository/984775#9847750Answer by bobpaul for Detach subdirectory into separate git repositorybobpaul2009-06-12T02:49:26Z2009-06-12T08:28:42Z<p>You might need something like "git reflog expire --expire=now --all" before the garbage collection to actually clean the files out. git filter-branch just removes references in the history, but doesn't remove the reflog entries that hold the data. Of course, test this first.</p>
<p>My disk usage dropped dramatically in doing this, though my initial conditions were somewhat different. Perhaps --subdirectory-filter negates this need, but I doubt it.</p>
http://stackoverflow.com/questions/359424/detach-subdirectory-into-separate-git-repository/1020271#1020271-2Answer by bcolfer for Detach subdirectory into separate git repositorybcolfer2009-06-19T22:12:01Z2009-06-19T22:12:01Z<p>I ran this command on a repository imported from Perforce and it did not prune my repository only the directory I wanted. Here is what I started out with:</p>
<pre><code>Application/
/.git
/java/
/test/
/tools/
/starfish
/halibut
</code></pre>
<p>I wanted: </p>
<pre><code>Application/
/.git
/java
/test
Tools/
/.git
/starfish
/halibut
</code></pre>
<p>The command I executed was </p>
<pre><code>git clone --no-hardlinks ./Application ./Tools
cd Tools
git filter-branch --subdirectory-filter tools HEAD
git reset --hard
git gc --aggressive
git prune
</code></pre>
<p>I was left with all of the directories I had before ... any ideas?</p>
http://stackoverflow.com/questions/359424/detach-subdirectory-into-separate-git-repository/1181785#11817850Answer by Case Larsen for Detach subdirectory into separate git repositoryCase Larsen2009-07-25T10:01:26Z2009-07-25T10:25:39Z<p>To add to Paul's answer, I found that to ultimately recover space, I have to push HEAD to a clean repository and that trims down the size of the .git/objects/pack directory.</p>
<p>i.e.</p>
<pre>
$ mkdir ...ABC.git
$ cd ...ABC.git
$ git init --bare
</pre>
<p>After the gc prune, also do:</p>
<pre>
$ git push ...ABC.git HEAD
</pre>
<p>Then you can do</p>
<pre>
$ git clone ...ABC.git
</pre>
<p>and the size of ABC/.git is reduced</p>
<p>Actually, some of the time consuming steps (e.g. git gc) aren't needed with the push to clean repository, i.e.:</p>
<pre>
$ git clone --no-hardlinks /XYZ /ABC
$ git filter-branch --subdirectory-filter ABC HEAD
$ git reset --hard
$ git push ...ABC.git HEAD
</pre>
http://stackoverflow.com/questions/359424/detach-subdirectory-into-separate-git-repository/1591174#15911740Answer by jleedev for Detach subdirectory into separate git repositoryjleedev2009-10-19T21:10:21Z2009-10-19T23:14:19Z<p>I’ve found that in order to properly delete the old history from the new repository, you have to do a little more work after the <code>filter-branch</code> step.</p>
<ol>
<li><p>Do the clone and the filter:</p>
<pre><code>git clone --no-hardlinks foo bar; cd bar
git filter-branch --subdirectory-filter subdir/you/want
</code></pre></li>
<li><p>Remove every reference to the old history. “origin” was keeping track of your clone, and “original” is where filter-branch saves the old stuff:</p>
<pre><code>git remote rm origin
rm -r .git/refs/original/
git reflog expire --expire=now --all
</code></pre></li>
<li><p>Even now, your history might be stuck in a packfile that fsck won’t touch. Tear it to shreds:</p>
<pre><code>git gc --aggressive
</code></pre></li>
<li><p>Only now does git-fsck find unused commits! Now git-prune will delete them:</p>
<pre><code>git prune
</code></pre></li>
</ol>