How can I fork my own GitHub repository?

前端 未结 7 2302
南笙
南笙 2020-11-30 06:19

So, total newbie to Git. Been reading through the guides and think I have the basics but am having difficulties accomplishing this one goal.

I have a repo created fo

7条回答
  •  春和景丽
    2020-11-30 07:09

    You're doing the right thing.

    cd ~/Sites/
    git clone ~/Dev/markupDNA/ project-N
    cd project-N
    git remote rename origin markupDNA
    
    • Nav to the folder where you store your projects
    • clone your base markupDNA repo with custom name
    • rename the remote so that if you want to an 'origin' later, you can

提交回复
热议问题