<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array"/>
  <modified type="array">
    <modified>
      <diff>@@ -1,21 +1,45 @@
+h2. Summary
+
+This is a repo intended for use as a template for your wordpress projects.
+
+h2. Setup
+
+* &quot;Fork&quot;:http://github.com/jestro/wordpress-capistrano/fork this repo
+* Rename your project, make it private if desired
+* Clone your fresh repo:
+
+&lt;pre&gt;
+  &lt;code&gt;
+    git clone git@github.com:yourname/yourwordpressproject.git
+    cd yourwordpressproject
+    git submodule init
+    git submodule update
+  &lt;/code&gt;
+&lt;/pre&gt;
+
+* Create a theme in @themes@
+* Drop your plugins in @plugins@
+* Update @config/wp-config.php@
+* Adjust the @@
+
 h3. Switching Wordpress Versions
 
 &lt;pre&gt;
-&lt;code&gt;
-  cd wordpress
+  &lt;code&gt;
+    cd wordpress
 
-  #show all versions
-  git tag -l
+    #show all versions
+    git tag -l
 
-  #checkout a version
-  git checkout 2.6.3
+    #checkout a version
+    git checkout 2.6.3
 
-  cd ..
+    cd ..
 
-  #commit
-  git commit wordpress -m &quot;use wordpress 2.6.3&quot;
+    #commit
+    git commit wordpress -m &quot;use wordpress 2.6.3&quot;
 
-  #push
-  git push
-&lt;/code&gt;
+    #push
+    git push
+  &lt;/code&gt;
 &lt;/pre&gt;</diff>
      <filename>Readme.textile</filename>
    </modified>
    <modified>
      <diff>@@ -1,15 +1,35 @@
-set :application, &quot;set your application name here&quot;
-set :repository,  &quot;set your repository location here&quot;
+#the domain name for the server you'll be running wordpress on
+set :server, &quot;localhost&quot;
 
-# If you aren't deploying to /u/apps/#{application} on the target
-# servers (which is the default), you can specify the actual location
-# via the :deploy_to variable:
-# set :deploy_to, &quot;/var/www/#{application}&quot;
+#the name of this wordpress project
+set :application, &quot;wordpress-capistrano-test&quot;
 
-# If you aren't using Subversion to manage your source code, specify
-# your SCM below:
-# set :scm, :subversion
+#your repo
+set :repository,  &quot;git@github.com:jestro/wordpress-capistrano.git&quot;
 
-role :app, &quot;your app-server here&quot;
-role :web, &quot;your web-server here&quot;
-role :db,  &quot;your db-server here&quot;, :primary =&gt; true
\ No newline at end of file
+#the folder that your server is configured to serve wordpress from
+set :deploy_to, &quot;/Library/WebServer/Documents/wordpress&quot;
+
+##############################################################################
+# You shouldn't need to touch the rest of this stuff.                        #
+##############################################################################
+
+default_run_options[:pty] = true
+set :scm, &quot;git&quot;
+set :deploy_via, :remote_cache
+set :branch, &quot;master&quot;
+set :git_enable_submodules, 1
+
+#allow deploys w/o having git installed locally
+set(:real_revision) { capture(&quot;git ls-remote #{repository} #{branch} | cut -f 1&quot;) }
+
+role :app, server
+role :web, server
+role :db,  server, :primary =&gt; true
+
+namespace :deploy do
+  desc &quot;Override deploy restart to not do anything&quot;
+  task :restart do
+    #
+  end
+end
\ No newline at end of file</diff>
      <filename>config/deploy.rb</filename>
    </modified>
  </modified>
  <removed type="array"/>
  <parents type="array">
    <parent>
      <id>abc0fa7b94f51218294404285bf8268f9bc72734</id>
    </parent>
  </parents>
  <author>
    <name>Jesse Newland</name>
    <email>jnewland@gmail.com</email>
  </author>
  <url>http://github.com/jestro/wordpress-capistrano/commit/1bc8d51b8e29bdce7a13b20e1f5810410dfe034a</url>
  <id>1bc8d51b8e29bdce7a13b20e1f5810410dfe034a</id>
  <committed-date>2008-11-17T17:19:13-08:00</committed-date>
  <authored-date>2008-11-17T17:19:13-08:00</authored-date>
  <message>some docs</message>
  <tree>8872e9d0876c7ce5f0e5498f481944ac5d974ef8</tree>
  <committer>
    <name>Jesse Newland</name>
    <email>jnewland@gmail.com</email>
  </committer>
</commit>
