summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEric Sandall2007-03-29 12:19:15 -0700
committerEric Sandall2007-03-29 12:19:15 -0700
commit78f43c03b3200a25b09b3f682bfdee2ac63e5a83 (patch)
treecfd6128d78a5381d03d4be01b640cc7758ae94fd
parentcc5b80cb4f1b9daaf3ecec23d1acef6f3087c60d (diff)
GrimoireGuruHandbook.tex: Update pushing a new remote branch to be proper
-rw-r--r--GrimoireGuruHandbook.tex12
1 files changed, 2 insertions, 10 deletions
diff --git a/GrimoireGuruHandbook.tex b/GrimoireGuruHandbook.tex
index 4a58c50..5a98b0f 100644
--- a/GrimoireGuruHandbook.tex
+++ b/GrimoireGuruHandbook.tex
@@ -354,7 +354,8 @@ help with it, so we'll push it to the upstream grimoire.git on sourcemage.org.
\end{verbatim}
\item Now we push our currently checked out branch onto the remote
\begin{verbatim}
- $ git push origin devel-openoffice
+ $ git push ssh://scm.sourcemage.org/smgl/grimoi
+re devel-openoffice:devel-openoffice
updating 'refs/heads/devel-openoffice'
from 0000000000000000000000000000000000000000
to fa9869a20bbfb479fafd63ef41e890919df3b6d9
@@ -384,15 +385,6 @@ $ git branch -r
origin/devel-openoffice
origin/master
\end{verbatim}
- \item Remove your local devel-openoffice (since it is not linked with
-the remote, it will be difficult to keep them in sync)
- \begin{verbatim}
- $ git branch -D devel-openoffice
- \end{verbatim}
- \item Check out the remote devel-openoffice to your local branch
- \begin{verbatim}
- $ git checkout -b devel-openoffice origin/devel-openoffice
- \end{verbatim}
\end{enumerate}
You are now set to collaborate on the devel-openoffice branch with other
developers. :)