Seeking examples of workflow using git-format-patch and git am - Stack Overflow most recent 30 from stackoverflow.com2009-12-16T02:17:52Zhttp://stackoverflow.com/feeds/question/327249http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/327249/seeking-examples-of-workflow-using-git-format-patch-and-git-am5Seeking examples of workflow using git-format-patch and git amNorman Ramsey2008-11-29T06:16:01Z2008-11-29T06:25:04Z
<p>I'm thinking of asking my students to use git for pair programming. Because student work has to be secret, a public repo is out of the question. Instead, each student will have a private repo they maintain themselves, and they will need to exchange patches using git-format-patch. I've read the man page but I'm a little unclear <em>which</em> patches will be sent. The obvious thing for the students would be <strong>send all patches since the last send</strong> or (if git doesn't mind receiving the same patches redundantly) <strong>send all patches since the dawn of time</strong>. (Remember these are student projects, they last for a couple of weeks and are small, and <strong>performance is not a criterion</strong>.) Our best friend is <strong>simplicity</strong> and we are fond of brute force as well.</p>
<p>Can anyone give me a short series of examples that show two people, each with a private git repo, exchanging patches using git-format-patch and git-am? Or alternatively point me to existing git documentation and/or tutorial?</p>
http://stackoverflow.com/questions/327249/seeking-examples-of-workflow-using-git-format-patch-and-git-am/327258#3272588Answer by Dustin for Seeking examples of workflow using git-format-patch and git amDustin2008-11-29T06:25:04Z2008-11-29T06:25:04Z<p>It works best if they can see each other's git repos. git itself is managed this way (there's a public repo people can reference, and then they format-patch from there). If people <em>never</em> see each other's repos, things are a bit more difficult...</p>
<p>One thing they may do is maintain a reference to the last time they did a format patch. Let's say they start by just sending their entire tree (including .git):</p>
<pre><code>tar cvf - mytree | gzip -9vc > /tmp/mytree.tgz
# mail /tmp/mytree.tgz
git tag last-send
# hack, commit, hack, commit
git format-patch -M -C last-send..
# mail 00* && rm 00*
git tag -f last-send
</code></pre>
<p><code>git tag</code> in this form creates a "lightweight tag. It's a sort of bookmark. This will be an easy way for people to keep track of what they sent so they can send it again next time.</p>
<p>On the other side:</p>
<pre><code># get patches from mail and place in /tmp
git am /tmp/00*
rm /tmp/00*
</code></pre>