我在这里有一个博客的GitHub存储库:https://github.com/andrerpena/andrerpena.github.io。
这个存储库是这个存储库的一个分支:https://github.com/barryclark/jekyll-now。
我要做的是根据我分叉的存储库更新我的存储库。我没有Git经验所以我试图关注this tutorial。但它没有用,因为我似乎没有upstream
分支。
我该怎么办?
修改
在@sircapsalot的建议之后,似乎我现在正确配置了upstream
分支:
但我不知道该怎么做。
答案 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
的原因是你没有读过:)
转到that page。