Merging only modified files using Git - Stack Overflow most recent 30 from stackoverflow.com 2009-12-03T14:04:55Z http://stackoverflow.com/feeds/question/847950 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/847950/merging-only-modified-files-using-git 3 Merging only modified files using Git kaychaks 2009-05-11T12:48:50Z 2009-05-12T03:32:35Z <p>I have a repository which contains Content &amp; Source files. Developers should work only on source files. To save space, developers should not clone the content files (which are in GB) to their local repo. Source files are not present in the project as sub-modules rather they are in the same location where the contents are. </p> <p>My approach is like this - I created a branch <strong>Source</strong> from <strong>Master</strong> and then deleted the content files from that branch. And I published the same branch for cloning to the developers.</p> <p>As I am merging the changes from the <strong>Source</strong> branch back to <strong>Master</strong>, the content files are getting deleted in <strong>Master</strong>. How to restrict it? And if it is not possible then is there a way to achieve my requirement of having a separate branch / clone having only filtered files i.e. the source files in it?</p> http://stackoverflow.com/questions/847950/merging-only-modified-files-using-git/847996#847996 2 Answer by Bombe for Merging only modified files using Git Bombe 2009-05-11T12:59:31Z 2009-05-11T12:59:31Z <p>You shouldn’t have removed the files from the <code>Source</code> branch at all. If <code>Source</code> and <code>Master</code> are only branches in the same repository your developers will have the content anyway; there’s no harm in having it lying around.</p> http://stackoverflow.com/questions/847950/merging-only-modified-files-using-git/848010#848010 5 Answer by Oddmund for Merging only modified files using Git Oddmund 2009-05-11T13:02:48Z 2009-05-12T03:32:35Z <p>The obvious answer is that you should have <strong>separate source and content repositories</strong>. Or just leave the content be.</p> http://stackoverflow.com/questions/847950/merging-only-modified-files-using-git/848063#848063 0 Answer by Vili for Merging only modified files using Git Vili 2009-05-11T13:18:11Z 2009-05-11T13:18:11Z <p>Are you sure you want to include those media/doc files in your repo? Do you want to track changes of a 200GB media library?</p> <p>If you put their owner dir reference in a .gitignore file when you are on your source branch, git will ignore those files, thus won't touch/delete them.</p> <p><a href="http://www.kernel.org/pub/software/scm/git/docs/gitignore.html" rel="nofollow">http://www.kernel.org/pub/software/scm/git/docs/gitignore.html</a></p> http://stackoverflow.com/questions/847950/merging-only-modified-files-using-git/848096#848096 0 Answer by rampion for Merging only modified files using Git rampion 2009-05-11T13:25:54Z 2009-05-11T13:32:07Z <p>Use <a href="http://www.kernel.org/pub/software/scm/git/docs/git-merge.html" rel="nofollow"><code>git-merge</code></a> to merge the two branches, and then <a href="http://www.kernel.org/pub/software/scm/git/docs/v1.6.2.3/git-revert.html" rel="nofollow"><code>git-revert</code></a> to remove the commit that deleted the content files.</p> <pre><code>% git checkout Master % git merge Source % git revert &lt;content-removal-commit-id&gt; </code></pre> <p>Or you could do it the other way around, and remove the content-removal commit before you merge into Master. It's a little more complex, but it might keep your Master history a little cleaner.</p> <pre><code>% git checkout Source % git branch SourceMerge % git checkout SourceMerge % git revert &lt;content-removal-commit-id&gt; % git checkout Master % git merge SourceMerge </code></pre>