<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array"/>
  <modified type="array">
    <modified>
      <diff>@@ -25,16 +25,28 @@ If you want to submit tips, [please do so here](http://gitready.com/submit.html)
 If you are interested in translating posts into another language, great! Here's what to do:
 
 * Fork the project.
-* Create a branch with the ISO code for your language 
+* Create a branch with the ISO code for your language, so for english:
+
+&lt;pre&gt;
+git checkout -b en
+&lt;/pre&gt;
+
+* Unpublish all the posts (and commit your changes):
+
+&lt;pre&gt;
+rake unpublish
+git commit -am &quot;Unpublishing all the posts&quot;
+&lt;/pre&gt;
+
 * Translate the front page headers, footers. Check out the other translated sites for an example, such as the [german one](http://de.gitready.com).
 * Translate as little or as many posts as you so desire.
-* The posts that aren't translated, add this to the YAML front matter (this way, untranslated posts don't show up):
+* Push your work back up (remember to the right branch name!):
 
 &lt;pre&gt;
-published: false
+git push origin en
 &lt;/pre&gt;
 
-* Submit a pull request to the main repository.
+* Submit a pull request to qrush's repository.
 
 Once that's done, I'll add your language's subdomain and get it published.
 </diff>
      <filename>README.md</filename>
    </modified>
    <modified>
      <diff>@@ -28,3 +28,13 @@ EOF
       ssh.exec commands
   end
 end
+
+desc &quot;Unpublish all posts&quot;
+task :unpublish do
+  Dir[&quot;_posts/*.textile&quot;].each do |post|
+    puts &quot;Unpublishing #{post}&quot;
+    lines = File.readlines(post)
+    lines.insert(1, &quot;published: false\n&quot;)
+    File.open(post, &quot;w&quot;) { |f| f.write lines.join }
+  end
+end</diff>
      <filename>Rakefile</filename>
    </modified>
  </modified>
  <removed type="array"/>
  <parents type="array">
    <parent>
      <id>d591ced8350dcdae2a0db81bfc9d995538fe4601</id>
    </parent>
  </parents>
  <author>
    <name>Nick Quaranto</name>
    <email>nick@quaran.to</email>
  </author>
  <url>http://github.com/qrush/gitready/commit/cdfbc4ec5321ff8d18c3ce936e9c749dbbc4f190</url>
  <id>cdfbc4ec5321ff8d18c3ce936e9c749dbbc4f190</id>
  <committed-date>2009-07-31T21:00:30-07:00</committed-date>
  <authored-date>2009-07-31T20:55:20-07:00</authored-date>
  <message>Adding rake unpublish to help translators get started and updating the readme accordingly</message>
  <tree>9eda6352ed6b94d0a04083aaaf05fd3d46760ce1</tree>
  <committer>
    <name>Nick Quaranto</name>
    <email>nick@quaran.to</email>
  </committer>
</commit>
