<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array"/>
  <modified type="array">
    <modified>
      <diff>@@ -190,7 +190,7 @@
   * remote origin
     URL: ssh://myserver.com/var/git/myapp.git
     New remote branches (next fetch will store in remotes/origin)
-      dev/rails-2
+      rails-2
     Tracked remote branches
       master
   &lt;/code&gt;&lt;/pre&gt;
@@ -198,36 +198,36 @@
   Let's update our mirror of the remote repository by doing a @git fetch@:
   
   &lt;pre&gt;&lt;code class=&quot;shell&quot;&gt;$ git fetch
-  * refs/remotes/origin/master: storing branch 'dev/rails-2' of ssh://myserver.com/var/git/myapp.git
+  * refs/remotes/origin/master: storing branch 'rails-2' of ssh://myserver.com/var/git/myapp.git
     commit: b379203
   $ git remote show origin
   * remote origin
     URL: ssh://myserver.com/var/git/myapp.git
     Tracked remote branches
       master
-      dev/rails-2&lt;/code&gt;&lt;/pre&gt;
+      rails-2&lt;/code&gt;&lt;/pre&gt;
   
   We should now be able to see this in a our list of remote branches:
   
   &lt;pre&gt;&lt;code class=&quot;shell&quot;&gt;$ git branch -a
   * master
-  origin/dev/rails-2
+  origin/rails-2
   origin/master&lt;/code&gt;&lt;/pre&gt;
   
-  If we then wanted to do some work on this remote @dev/rails-2@ branch we create a new local tracking branch like so:
+  If we then wanted to do some work on this remote @rails-2@ branch we create a new local tracking branch like so:
   
-  &lt;pre&gt;&lt;code class=&quot;shell&quot;&gt;$ git checkout --track -b dev/rails-2 origin/dev/rails-2
-  Branch dev/rails-2 set up to track remote branch refs/remotes/origin/dev/rails-2.
-  Switched to a new branch &quot;dev/rails-2&quot;
+  &lt;pre&gt;&lt;code class=&quot;shell&quot;&gt;$ git checkout --track -b rails-2 origin/rails-2
+  Branch rails-2 set up to track remote branch refs/remotes/origin/rails-2.
+  Switched to a new branch &quot;rails-2&quot;
   &lt;/code&gt;&lt;/pre&gt;
   
-  To keep up-to-date and push new changesets we simply use @git push@ and @git pull@ when working in the local @dev/rails-2@ branch.
+  To keep up-to-date and push new changesets we simply use @git push@ and @git pull@ when working in the local @rails-2@ branch.
   
   Also notice, like we manually changed for master, @.git/config@ has a new entry for this new tracking branch:
   
-  &lt;pre&gt;&lt;code&gt;[branch &quot;dev/rails-2&quot;]
+  &lt;pre&gt;&lt;code&gt;[branch &quot;rails-2&quot;]
     remote = origin
-    merge = refs/heads/dev/rails-2
+    merge = refs/heads/rails-2
   &lt;/code&gt;&lt;/pre&gt;
   
   h2. Further Reading</diff>
      <filename>articles/setting_up_a_new_remote_git_repository.haml</filename>
    </modified>
  </modified>
  <removed type="array"/>
  <parents type="array">
    <parent>
      <id>2fdef261f8a3707e762fd240b9955c40db737c39</id>
    </parent>
  </parents>
  <author>
    <name>Tim Lucas</name>
    <email>t.lucas@toolmantim.com</email>
  </author>
  <url>http://github.com/toolmantim/toolmantim/commit/1cb842d65323d37e9e5c864fc9c7a691043f8ca6</url>
  <id>1cb842d65323d37e9e5c864fc9c7a691043f8ca6</id>
  <committed-date>2009-11-02T15:31:54-08:00</committed-date>
  <authored-date>2009-11-02T15:31:54-08:00</authored-date>
  <message>[FIX] Replaced references to the &quot;dev/rails-2&quot; branch with just &quot;rails-2&quot;</message>
  <tree>7caf9463ce8db3acd1dddce298d9ea59907059f5</tree>
  <committer>
    <name>Tim Lucas</name>
    <email>t.lucas@toolmantim.com</email>
  </committer>
</commit>
