GitHub: How to add open pull requests to local repo?

前端 未结 4 759
孤城傲影
孤城傲影 2021-01-31 04:49

I\'m using the NSDate-Extensions plugin in my iOS Xcode project. The master repo has some errors which seems to be fixed in two Pull Requests:

  • https://github.com/e
4条回答
  •  孤街浪徒
    2021-01-31 04:50

    Add a .patch to the end of the pull url - you can download and apply the patch on your repo:

    curl https://github.com/erica/NSDate-Extensions/pull/6.patch | git am
    

提交回复
热议问题