tags/scm http://moria.greycastle.net//tags/scm.html moria James Davidson: git send-email tricks James Davidson http://moria.greycastle.net//blog/gitsendemailtricks.html http://moria.greycastle.net//blog/gitsendemailtricks.html computer git programming scm Wed, 28 Oct 2009 21:29:00 -0700 2009-11-16T00:22:58Z <p>If you typically send patches to mail lists then Felipe Contreras' <a href="http://felipec.wordpress.com/2009/10/25/git-send-email-tricks/">git send-email tricks</a> blog post is definitely worth reading.</p> James Davidson: Delta chains and packs James Davidson http://moria.greycastle.net//blog/gitdeltachains.html http://moria.greycastle.net//blog/gitdeltachains.html computer git scm Thu, 06 Dec 2007 12:45:00 -0800 2009-10-12T04:04:00Z <p>In a <a href="http://thread.gmane.org/gmane.comp.gcc.devel/94565/">discussion on creating a git repo for the gcc code base</a>, Linus describes <a href="http://article.gmane.org/gmane.comp.gcc.devel/94613">how git uses delta chains</a> and how they relate to packing.</p> <p>In the same discussion Linus has additional <a href="http://article.gmane.org/gmane.comp.gcc.devel/94654">low level explanation</a>.</p> James Davidson: Git Cheat Sheet James Davidson http://moria.greycastle.net//blog/gitcheatsheet.html http://moria.greycastle.net//blog/gitcheatsheet.html computer git scm Tue, 23 Oct 2007 12:23:00 -0700 2009-10-12T04:03:00Z <p>Zach Rusin has created a very easy on the eyes <a href="http://zrusin.blogspot.com/2007/09/git-cheat-sheet.html">git cheat sheet</a>. This is very useful if you use some git commands only once in a blue moon.</p> James Davidson: Using Git through a firewall James Davidson http://moria.greycastle.net//blog/gitoversocks.html http://moria.greycastle.net//blog/gitoversocks.html computer git scm Thu, 07 Sep 2006 15:16:00 -0700 2009-10-12T04:02:00Z <p>I finally ran into a firewall issue in that I could not gain access to a git repository that was only available using the git protocol.</p> <p>I knew how to setup OpenSSH to be a SOCKS proxy, so I needed a way to <a href="http://article.gmane.org/gmane.comp.version-control.git/12383">get git to use a SOCKS proxy</a>.</p> <p>Works great!</p> James Davidson: Getting a feel for how Git's Index works James Davidson http://moria.greycastle.net//blog/gitindex.html http://moria.greycastle.net//blog/gitindex.html computer git scm Fri, 30 Jun 2006 12:49:00 -0700 2009-10-12T04:01:00Z <p><a href="http://www.linux-mag.com">Linux Magazine</a> has an excellent article, <a href="http://www.linux-mag.com/id/2547"> Embracing the Git Index</a>, that demonstrates how git's index is used.</p> James Davidson: Using git to browse Linux Kernel code James Davidson http://moria.greycastle.net//blog/browsingkernelcode.html http://moria.greycastle.net//blog/browsingkernelcode.html computer git scm Mon, 24 Apr 2006 21:40:00 -0700 2009-10-12T04:00:00Z <p><a href="http://kernel.org">kernel.org</a> hosts gitweb that is an excellent interface for <a href="http://www.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git">browsing kernel code changes</a> changes.</p> <p>You can even track the <a href="http://www.kernel.org/git/?p=linux/kernel/git/gregkh/stable-queue.git">stable kernel queue</a>.</p> James Davidson: Plucked git Documentation James Davidson http://moria.greycastle.net//blog/pluckedgitdocs.html http://moria.greycastle.net//blog/pluckedgitdocs.html computer git scm Tue, 11 Apr 2006 21:34:00 -0700 2009-10-12T03:57:00Z <p>If you have git and plucker installed, then you can easily create a Plucker version of the git documentation for you Palm.</p> <pre><code> plucker-build --title="git" --doc-name="git" --doc-file="git" --stayonhost="" --maxdepth=10 file:///usr/share/doc/git-core-x.y.z/git.html </code></pre> <p>For the lazy among us, here is git.pdb.</p> <p>Update 2009-10-11: Removed git.pdb because git documentation has been updated significantly since I created this plucker document. Also, I no longer use a Palm device so plucker is not an application I use anymore.</p> James Davidson: Checkout a tagged release James Davidson http://moria.greycastle.net//blog/checkouttaggedrelease.html http://moria.greycastle.net//blog/checkouttaggedrelease.html computer git scm Mon, 10 Apr 2006 00:00:00 -0700 2009-10-12T03:43:00Z <p>git supports applying tags to the HEAD, but is not so easy to check out a specific tag. See the <a href="http://www.linux-mips.org/wiki/Git">LinuxMips wiki</a> for a description of how to <a href="http://www.linux-mips.org/wiki/Git#Checking_out_a_tagged_release_with_git">check out a tagged release</a>.</p> James Davidson: Trying to 'Get' git James Davidson http://moria.greycastle.net//blog/tryingtogetgit.html http://moria.greycastle.net//blog/tryingtogetgit.html computer git scm Mon, 06 Mar 2006 00:00:00 -0800 2009-10-12T03:43:00Z <p><a href="http://fedoraproject.org/wiki/Extras">Fedora Extras</a> is keeping up to date with new releases of git so now I can take a stab at figuring out how git works.</p> <p>On a Fedora system, start with /usr/share/doc/git-core-x.y.z/core-tutorial.html.</p>