
Module: ppl/w3ppl Branch: master Commit: 66af8bcb4544e7e61959c3cef2106d780c373e59 URL: http://www.cs.unipr.it/git/gitweb.cgi?p=ppl/w3ppl.git;a=commit;h=66af8bcb454...
Author: Roberto Bagnara bagnara@cs.unipr.it Date: Fri Mar 20 18:56:33 2009 +0100
Spurious colons (`:') removed.
---
htdocs/Download/Git.raw | 8 ++++---- 1 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/htdocs/Download/Git.raw b/htdocs/Download/Git.raw index 81c7f77..7dc820d 100644 --- a/htdocs/Download/Git.raw +++ b/htdocs/Download/Git.raw @@ -286,17 +286,17 @@ basic CVS commands and their Git counterparts.
<H4>Checkout of the main trunk vs Cloning of the master branch</H4> <PRE> -cvs -d ssh://myusername@git.cs.unipr.it:/cvs/ppl checkout ppl +cvs -d ssh://myusername@git.cs.unipr.it/cvs/ppl checkout ppl | -+---> git clone ssh://myusername@git.cs.unipr.it:/git/ppl/ppl.git ++---> git clone ssh://myusername@git.cs.unipr.it/git/ppl/ppl.git </PRE>
<H4>Checkout of a branch vs Cloning of the master branch + Creation of a local branch tracking a remote one</H4> <PRE> -cvs -d ssh://myusername@git.cs.unipr.it:/cvs/ppl checkout -r products ppl +cvs -d ssh://myusername@git.cs.unipr.it/cvs/ppl checkout -r products ppl | -+---> git clone ssh://myusername@git.cs.unipr.it:/git/ppl/ppl.git ++---> git clone ssh://myusername@git.cs.unipr.it/git/ppl/ppl.git git checkout -b products origin/products </PRE>