如何与远程Git仓库同步?

我在github上分了一个项目,做了一些改变,到目前为止这么好。

与此同时,我分叉的存储库已更改,我想将这些更改存入我的存储库。 我怎么做 ?

一般git pull就足够了,但是我不确定你select了什么布局(或者有github为你select)。

假设他们的更新在主服务器上,并且您在分支上想要合并更改。

 git remote add origin https://github.com/<github-username>/<repo-name>.git git pull origin master 

另外请注意,您将然后要将合并推回到您的存储库的副本:

 git push origin master 

您必须添加原始回购作为上游。

这里有很好的描述: https : //help.github.com/articles/fork-a-repo

 git remote add upstream https://github.com/octocat/Spoon-Knife.git git fetch upstream git merge upstream/master git push origin master 

您需要将原始存储库(您分叉的那个)添加为远程存储库。

git remote添加github(orignal仓库的克隆url)

然后,您需要将更改引入到本地存储库

git fetch github

现在,您将拥有本地存储库中的所有分支。 例如,master分支将是github/master 。 有了这些分支,你可以做你会的。 合并到你的分支等

对于Linux:

 git add * git commit -a --message "Initial Push All" git push -u origin --all