2012-08-29 126 views
1

所以我試圖把我的一個倉庫拿到我的項目中,但是這些文件沒有在我的本地機器上更新。git fetch遠程沒有更新項目?

git fetch TheCore <-- my Core on Github 
returns saying nothing in terminal, just puts me back at prompt 

沒有文件在我的機器上更新,仍舊有舊代碼。

我AS12項目遠程回購:

origin https://github.com/mine/as12.git (fetch) 
origin https://github.com/mine/as12.git (push) 
thecore https://github.com/mine/TheCore.git (fetch) 
thecore https://github.com/mine/TheCore.git (push) 

所以我試圖獲取TheCore所以它會更新我的新代碼的本地項目。不確定爲什麼抓取不起作用。

回答

1

只取對本地存儲庫進行更新的參考的作用。它不會自動更新本地分行。要更新本地分行,您需要根據具體情況使用pull,merge或rebase。

更多信息here