Seeking examples of workflow using git-format-patch and git am - Stack Overflow most recent 30 from stackoverflow.com 2009-12-16T02:17:52Z http://stackoverflow.com/feeds/question/327249 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/327249/seeking-examples-of-workflow-using-git-format-patch-and-git-am 5 Seeking examples of workflow using git-format-patch and git am Norman Ramsey 2008-11-29T06:16:01Z 2008-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#327258 8 Answer by Dustin for Seeking examples of workflow using git-format-patch and git am Dustin 2008-11-29T06:25:04Z 2008-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 &gt; /tmp/mytree.tgz # mail /tmp/mytree.tgz git tag last-send # hack, commit, hack, commit git format-patch -M -C last-send.. # mail 00* &amp;&amp; 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>