Marking a repo as a fork in github, after the fact

前端 未结 2 907
别跟我提以往
别跟我提以往 2021-01-17 08:46

We have a project that was forked a while back mostly via a copy/paste method. But there is still significant overlap between the repos.

Is it possible to retroactiv

2条回答
  •  清酒与你
    2021-01-17 09:02

    you should try something along the lines fo this:

    • create a real fork of the original project in github;
    • set this up as a remote of your copy/pasted fork (git add remote ...)
    • then rebase your work on top of this (git rebase)

提交回复
热议问题