不好意思,不知道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呢? 謝謝