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? === | ||
: | :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 clone git://github.com/username/yourproject.git | ||
:and update [remote] section | :and update [remote] section | ||
git config remote.origin.url | 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:// | url = git://github.com/username/yourproject.git | ||
:to: | :to: | ||
[remote "origin"] | [remote "origin"] | ||
url = | url = git@github.com:username/yourproject.git | ||
=== How do I request a merge? === | === How do I request a merge? === |