You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@isis.apache.org by bu...@apache.org on 2013/02/03 20:07:42 UTC

svn commit: r849267 - in /websites/staging/isis/trunk: cgi-bin/ content/ content/contributors/git-cookbook.html

Author: buildbot
Date: Sun Feb  3 19:07:42 2013
New Revision: 849267

Log:
Staging update by buildbot for isis

Modified:
    websites/staging/isis/trunk/cgi-bin/   (props changed)
    websites/staging/isis/trunk/content/   (props changed)
    websites/staging/isis/trunk/content/contributors/git-cookbook.html

Propchange: websites/staging/isis/trunk/cgi-bin/
------------------------------------------------------------------------------
--- cms:source-revision (original)
+++ cms:source-revision Sun Feb  3 19:07:42 2013
@@ -1 +1 @@
-1441915
+1441953

Propchange: websites/staging/isis/trunk/content/
------------------------------------------------------------------------------
--- cms:source-revision (original)
+++ cms:source-revision Sun Feb  3 19:07:42 2013
@@ -1 +1 @@
-1441915
+1441953

Modified: websites/staging/isis/trunk/content/contributors/git-cookbook.html
==============================================================================
--- websites/staging/isis/trunk/content/contributors/git-cookbook.html (original)
+++ websites/staging/isis/trunk/content/contributors/git-cookbook.html Sun Feb  3 19:07:42 2013
@@ -3,7 +3,7 @@
   <head>
 
     <meta charset="utf-8">
-      <title>Git Cookbook
</title>
+      <title>Git Cookbook</title>
     <meta name="description" content="">
     <meta name="author" content="">
 
@@ -112,7 +112,7 @@
       };
       function twshare () {
           window.open(
-                  "https://twitter.com/intent/tweet?url="+document.URL+"&text=Git Cookbook
",
+                  "https://twitter.com/intent/tweet?url="+document.URL+"&text=Git Cookbook",
                   'Share on Twitter',
                   'width=800,height=526');
       };
@@ -232,7 +232,7 @@
 
 <div class="page-header">
 <p><a href="./../documentation.html">Docs</a>&nbsp;&raquo&nbsp;<a href="./../contributors/about.html">Contributors</a></p>
-<h1>Git Cookbook
+<h1>Git Cookbook
 
 </h1>
 </div>
@@ -320,6 +320,12 @@ git rebase origin/master
 
 <p>After the <code>git fetch</code>, you will see that <code>gitk --all</code> shows the new set of commits as a branch separate from your own commits on branch.  The <code>git rebase</code> command then applies all your changes on top of that branch.  (Your original commits are orphaned and are eventually garbage collected by git).</p>
 
+<p>Once you're happy with all your changes, push your local repository onto the central repo:</p>
+
+<pre>
+git push
+</pre>
+
 <h3>Creating a local branch</h3>
 
 <p>If you are working on a branch for a significant period (eg to implement a ticket), then it probably makes sense to create a local branch:</p>