29 Mar
2014
29 Mar
'14
11:41 a.m.
On 03/28/2014 12:37 PM, Daniel James wrote:
- Go to the repos' page and click the 'fork' button to create a fork. - Copy the 'ssh clone url' from the right hand side. - In the local copy of the module:
git remote add remote-name (paste url here) git checkout origin/develop -b feature/branch-name git push --set-upstream remote-name feature/branch-name
Now when you push changes it should go to your fork.
This works just like a dream. Thanks.