Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
1.2k views
in Technique[技术] by (71.8m points)

git - Can I fork another persons repo twice into my own account?

On GitHub, I can't seem to figure out how I can fork a repo twice into one account.

So there is a repo from Bob/CoolFramework

I fork it to Jeremy/MyShooter and start to build a game

Now I also want to fork it to Jeremy/MyRPG to build another new game

When I try to fork CoolFramework a second time, it just takes me to MyShooter.

So the options I can think of: A) I'm not using Git in the right way B) It's not possible on Git C) I just couldn't see the option on Github

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)

In your case, I would suggest going with submodules. However to answer your exact question, here's how you should proceed.

  1. Start by creating Jeremy/MyShooter and Jeremy/MyRPG on Github. Keep them empty.

  2. Clone your origin project on your system, twice, giving it different names

    $ git clone http://github.com/Bob/CoolFramework MyShooter
    $ git clone http://github.com/Bob/CoolFramework MyRPG
    
  3. You now have 2 different local repos pointing to the same origin. You should remove the origin and point to yours as a remote:

    $ cd MyShooter
    $ git remote remove origin
    $ git remote add origin http://github.com/Jeremy/MyShooter.git
    $ git push -u origin master
    
  4. Don't forget to do the same for MyRPG


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...