<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array">
    <added>
      <filename>_layouts/static.html</filename>
    </added>
    <added>
      <filename>about.textile</filename>
    </added>
    <added>
      <filename>contact.textile</filename>
    </added>
    <added>
      <filename>projects.textile</filename>
    </added>
  </added>
  <modified type="array">
    <modified>
      <diff>@@ -4,7 +4,7 @@
 &lt;html xmlns=&quot;http://www.w3.org/1999/xhtml&quot; xml:lang=&quot;en&quot; lang=&quot;en-us&quot;&gt;
 &lt;head&gt;
    &lt;meta http-equiv=&quot;content-type&quot; content=&quot;text/html; charset=utf-8&quot; /&gt;
-   &lt;title&gt;litany against fear &amp;curren; {{ page.title }} &amp;curren; by nick quaranto&lt;/title&gt;
+   &lt;title&gt;litany against fear &amp;curren; by nick quaranto &amp;curren; {{ page.title }}&lt;/title&gt;
    &lt;meta name=&quot;author&quot; content=&quot;Nick Quaranto&quot; /&gt;
    &lt;link href=&quot;http://feeds2.feedburner.com/LitanyAgainstFear&quot; rel=&quot;alternate&quot; title=&quot;RSS&quot; type=&quot;application/rss+xml&quot; /&gt;
    &lt;link rel=&quot;stylesheet&quot; href=&quot;/css/reset.css&quot; type=&quot;text/css&quot; media=&quot;screen, projection&quot; /&gt;
@@ -17,9 +17,9 @@
   &lt;div class=&quot;container_12&quot;&gt;
     &lt;div id=&quot;links&quot; class=&quot;grid_2&quot;&gt;
       &lt;a href=&quot;/about.html&quot;&gt;about&lt;/a&gt;
-      &lt;a href=&quot;/about.html&quot;&gt;projects&lt;/a&gt;
-      &lt;a href=&quot;/about.html&quot;&gt;resume&lt;/a&gt;
-      &lt;a href=&quot;/about.html&quot;&gt;contact&lt;/a&gt;
+      &lt;a href=&quot;/projects.html&quot;&gt;projects&lt;/a&gt;
+      &lt;a href=&quot;http://visualcv.com/nquaranto/&quot;&gt;resume&lt;/a&gt;
+      &lt;a href=&quot;/contact.html&quot;&gt;contact&lt;/a&gt;
     &lt;/div&gt;
     &lt;div id=&quot;main&quot; class=&quot;grid_8&quot;&gt;
       &lt;h1&gt;&lt;a href=&quot;/&quot;&gt;litany against fear&lt;/a&gt;&lt;/h1&gt;</diff>
      <filename>_layouts/default.html</filename>
    </modified>
    <modified>
      <diff>@@ -5,4 +5,34 @@ wordpress_url: http://litanyagainstfear.com/?p=396
 layout: post
 ---
 
-&quot;I've moved this post over to my other blog, gitready. Check it out there!&quot;:http://gitready.com
+I frequently need to do this when setting up or syncing my various machines, and I seem to forget the command all the time. So let's say you've got more than one branch on your remote, and you want to bring it down into your local repository as well:
+
+p=. !http://gitready.com/images/branches.png!
+
+Viewing information on the remote should look something like this:
+
+&lt;pre&gt;
+$ git remote show origin
+  * remote origin
+    URL: *************
+    Remote branch merged with 'git pull' 
+      while on branch master
+        master
+      Tracked remote branches
+        haml master
+&lt;/pre&gt;
+
+Luckily, the command syntax for this is quite simple:
+
+&lt;pre&gt;
+git checkout --track -b 
+  &lt;local branch&gt; &lt;remote&gt;/&lt;tracked branch&gt;
+&lt;/pre&gt;
+
+So in my case, I used this command:
+
+@git checkout --track -b haml origin/haml@
+
+You can also use a simpler version:
+
+@git checkout -t origin/haml@</diff>
      <filename>_posts/2009-01-07-checkout-tracked-remote-branch-with-git.textile</filename>
    </modified>
    <modified>
      <diff>@@ -114,7 +114,6 @@ h2 {
   text-align: center;
   font-size: 24px; 
   line-height: 22px; 
-  margin-bottom: 3px;
 }
 
 h3 { 
@@ -176,6 +175,18 @@ ul { list-style-type: square; }
   padding: 0px 30px;
 }
 
+#post h2 {
+  margin-bottom: 3px;
+}
+
+#static {
+  padding: 0px 30px;
+}
+
+#static h2 {
+  margin-bottom: 15px;
+}
+
 #date {
   text-align: center;
   color: #666;</diff>
      <filename>css/screen.css</filename>
    </modified>
  </modified>
  <removed type="array"/>
  <parents type="array">
    <parent>
      <id>b553d7ef97d9f9de9eecf3d6c1e26caa62444028</id>
    </parent>
  </parents>
  <author>
    <name>Nick Quaranto</name>
    <email>nick@quaran.to</email>
  </author>
  <url>http://github.com/qrush/litanyagainstfear/commit/601aef7d4a1637b4c7e30c403e751fc6f3cdb132</url>
  <id>601aef7d4a1637b4c7e30c403e751fc6f3cdb132</id>
  <committed-date>2009-04-25T10:11:48-07:00</committed-date>
  <authored-date>2009-04-25T10:11:48-07:00</authored-date>
  <message>Adding some static pages</message>
  <tree>99000e6dccdc095f771dc7c71eb103bdb21319e8</tree>
  <committer>
    <name>Nick Quaranto</name>
    <email>nick@quaran.to</email>
  </committer>
</commit>
