Activity Team/Git FAQ: Difference between revisions

Line 45: Line 45:
=== How do I create a fork of an existing project? ===
=== How do I create a fork of an existing project? ===


:Click on the Repositories Tab of the project page in Gitorious. Click on "Mainline". A link will appear on the right-hand side of the page saying, "Clone repository".
:Go to project page, and click the "Fork" button in the top


:Note: if you (as maintainer) are making a clone to replace a corrupted mainline on your local machine, you'll need to:
:Note: if you (as maintainer) are making a clone to replace a corrupted mainline on your local machine, you'll need to:


   git clone  git://git.sugarlabs.org/yourproject/mainline.git
   git clone  git://github.com/username/yourproject.git


:and update [remote] section
:and update [remote] section


  git config remote.origin.url gitorious@git.sugarlabs.org:yourproject/mainline.git
  git config remote.origin.url git@github.com:username/project.git


----
----
Line 59: Line 59:
:in the .git/config file, you may have to change:
:in the .git/config file, you may have to change:
  [remote "origin"]
  [remote "origin"]
     url = git://git.sugarlabs.org/yourproject/yourbranch.git
     url = git://github.com/username/yourproject.git


:to:
:to:
  [remote "origin"]
  [remote "origin"]
     url = gitorious@git.sugarlabs.org:yourproject/yourbranch.git
     url = git@github.com:username/yourproject.git


=== How do I request a merge? ===
=== How do I request a merge? ===