How to do a GitHub pull request

前端 未结 8 2078
一个人的身影
一个人的身影 2020-11-22 03:12

How do I create and/or send a pull request to another repository hosted on GitHub?

8条回答
  •  忘掉有多难
    2020-11-22 04:01

    I followed tim peterson's instructions but I created a local branch for my changes. However, after pushing I was not seeing the new branch in GitHub. The solution was to add -u to the push command:

    git push -u origin 
    

提交回复
热议问题