2016-10-31 104 views
0

如果您已經克隆了其他人的回購(而不是分叉)並且已在本地進行提交,那麼將其推入GitHub的新遠程回購有什麼合適的方法?從本地推送到github,從另一個repo克隆

+0

遠程回購是一個分叉(點擊GitHub上的分叉按鈕)還是一個新的空回購? – kennytm

+0

[更改遠程Git存儲庫的URI(URL)]的可能重複(http://stackoverflow.com/questions/2432764/change-the-uri-url-for-a-remote-git-repository) – thirtythreeforty

回答

2

您可以更改遙控器或添加另一個遙控器。

要更改遠程

git remote set-url origin https://www.something.com/my_repo.git 

要添加輔助遠程如例如other_origin

git remote add other_origin https://www.something.com/my_repo.git 

如果更改origin可以git push新的遙控器。如果您添加了另一臺遙控器,您可以在git push期間指定要推送到哪個遙控器。