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:
You can pull the requests from the command line without adding remotes:
git pull https://github.com/erica/NSDate-Extensions +refs/pull/6/head
If you are not already sure you want to do that, then you might want to check out that branch first with:
git fetch https://github.com/erica/NSDate-Extensions +refs/pull/6/head:refs/origin/pull/6
The advantage of this compared to using the patch files is that git gets the actual commits. So git can see when master was previously merged into the pull request. The patch file is completely unaware of such differences.