Merging only modified files using Git - Stack Overflow most recent 30 from stackoverflow.com2009-12-03T14:04:55Zhttp://stackoverflow.com/feeds/question/847950http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/847950/merging-only-modified-files-using-git3Merging only modified files using Gitkaychaks2009-05-11T12:48:50Z2009-05-12T03:32:35Z
<p>I have a repository which contains Content & 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#8479962Answer by Bombe for Merging only modified files using GitBombe2009-05-11T12:59:31Z2009-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#8480105Answer by Oddmund for Merging only modified files using GitOddmund2009-05-11T13:02:48Z2009-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#8480630Answer by Vili for Merging only modified files using GitVili2009-05-11T13:18:11Z2009-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#8480960Answer by rampion for Merging only modified files using Gitrampion2009-05-11T13:25:54Z2009-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 <content-removal-commit-id>
</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 <content-removal-commit-id>
% git checkout Master
% git merge SourceMerge
</code></pre>