processing / processing-library-template-ant

Processing Library Template for Eclipse
Other
142 stars 447 forks source link

Using the fork method to create more than one library projects #2

Closed codeanticode closed 8 years ago

codeanticode commented 11 years ago

I realized one potential issue with the Github method to create new library projects, which consists in forking the processing-library-template repo.

I applied this method once to create a new library called planetarium (https://github.com/codeanticode/planetarium), and everything went fine. Now I'd like to start a new library, but when I click the Fork button in the processing-library-template page, it takes me to the planetarium repo, instead of allowing me to start with a new one from scratch.

Manindra29 commented 11 years ago

This is a GitHub limitation. A user can have only one fork of a repo.

There are workarounds though - http://adrianshort.org/2011/11/08/create-multiple-forks-of-a-github-repo/

codeanticode commented 11 years ago

cool, thanks for the link. I think it should be added to the project's readme.

codeanticode commented 11 years ago

a quick note about the notes from the link, the step where the author sets the empty new repo as the origin:

git remote add git@github.com:adrianshort/ggw.git origin

didn't work as expected for me, and I had to change it as:

git remote add origin https://github.com/adrianshort/ggw.git

(following the naming conventions in that post).

prisonerjohn commented 11 years ago

Thanks for the heads up and the link, I'll make sure to add them to the README.