git fork的項目與原做者同步

以EasyPR項目爲例 
做者原項目地址是: https://github.com/liuruoze/EasyPR.git 
我frok後的項目地址是:https://github.com/willhope/EasyPR.gitgit

一、git clone fork的項目到本地,命令是:github

git clone https://github.com/willhope/EasyPR.git

二、進入剛纔clone的文件目錄下,而後增長源分支地址到你項目遠程分支列表中,命令是:fetch

cd EasyPR
git remote add EasyPR https://github.com/liuruoze/EasyPR.git

三、fetch源分支到本地,命令是:code

git fetch EasyPR

四、合併兩個版本的代碼rem

git merge EasyPR/master

五、最後一步,把合併後的代碼push到你的Github項目上去,這步須要你輸入你的帳戶名和密碼get

git push origin master
相關文章
相關標籤/搜索