不好意思,不知道github的东西能不能在这里问?
不能的话我会自删,谢谢!
==
最近在github上面看别人的code的时候,发现了一些地方可以修改
我按照github官方的说法,先从(假设是B)Fork了一份在自己这边(假设是A)
$ git clone https://github.com/ A /repo.git
$ cd repo
$ git remote add upstream https://github.com/ B /repo.git
$ git fetch upstream
$ git merge upstream/master
似乎流程应该是这样,然后开一个修改branch,
commit push完之后,就可以做pull request。
问题在,修改的地方在repo的某一个branch中,
我按照上面的跑下来,在我的本机上只有repo/master这条分支
请问要怎么样修改branch呢? 谢谢