From df6d010552ab6a9707ee7276b625fccae4c6b328 Mon Sep 17 00:00:00 2001 From: Arnout Engelen Date: Sun, 7 Feb 2010 16:05:16 +0100 Subject: [PATCH] Add instructions on how to import your project --- cgi/regproj.cgi | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/cgi/regproj.cgi b/cgi/regproj.cgi index dd066d3..0b45264 100755 --- a/cgi/regproj.cgi +++ b/cgi/regproj.cgi @@ -100,7 +100,16 @@ EOT - don't forget to assign yourself as a user as well if you want to push! $regnotice

-

Note that you cannot clone an empty repository since it contains no branches; you need to make the first push from an existing repository.

+

Note that you cannot clone an empty repository since it contains no branches; you need to make the first push from an existing repository. +To import a new project, the procedure is roughly as follows: +

+  $ git init
+  $ git add
+  $ git commit
+  $ git remote add origin $Girocco::Config::pushurl/$name.git
+  $ git push --all origin
+
+

You may experience permission problems if you try to push right now. If so, that should get fixed automagically in few minutes, please be patient.

Enjoy yourself, and have a lot of fun!

-- 2.11.4.GIT