如何从原始存储库更新分叉的Jekyll GitHub博客?

时间:2015-03-18 16:04:30

标签: git github jekyll

我在这里有一个博客的GitHub存储库:https://github.com/andrerpena/andrerpena.github.io

这个存储库是这个存储库的一个分支:https://github.com/barryclark/jekyll-now

我要做的是根据我分叉的存储库更新我的存储库。我没有Git经验所以我试图关注this tutorial。但它没有用,因为我似乎没有upstream分支。

我该怎么办?

修改

在@sircapsalot的建议之后,似乎我现在正确配置了upstream分支:

enter image description here

但我不知道该怎么做。

1 个答案:

答案 0 :(得分:3)

如果您使用的是CLI:

$ pwd
/users/.../andrerpena.github.io
$ git remote add upstream git@github.com:barryclark/jekyll-now.git
$ git pull --rebase upstream master

你没有upstream的原因是你没有读过:)

enter image description here

转到that page