如何将克隆作为新项目提交给我的GitHub?

时间:2017-02-01 21:44:10

标签: github

我下载其他人后#39;克隆,如何将它作为新项目提交给我的github?

1 个答案:

答案 0 :(得分:0)

如果其他代码也在github上,我建议将其分叉,然后克隆你的分叉。

如果您已经开始处理克隆,则可以添加另一个remote repository。您克隆的原始来源通常称为" origin",您可以按照自己的意愿命名:

-u

之后,您可以使用git push -u <name-of-remote> <branch> (设置原点)参数推送到该回购:

git remote add upstream <url-of-original-repo>

反之亦然。当你先fork,克隆你的fork,然后你的fork调用&#34; origin&#34;,然后你可以将原始源添加为&#34;上游&#34;使用:

import Data.List(findIndex)
import Data.Maybe(fromJust)

g = fromJust . findIndex id

See also