Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How can I download the changes contained in a Github pull request as a unified diff?

share|improve this question

1 Answer

up vote 35 down vote accepted

To view a commit as a diff/patch file, just add .diff or .patch to the end of the URL, for example, for example:

share|improve this answer
1  
Great, thanks. And there is also .patch. Why is this not exposed in the GUI? How is one supposed to discover this? – Thilo May 31 '11 at 14:04
6  
It's not documented to keep stackoverflow in business. Honestly, that is FAQ #2 – sehe May 31 '11 at 14:15
Also because git pull is the preferred method of downloading and applying the changes. – Tekkub Jun 1 '11 at 5:20
Also see github.com/blog/967-github-secrets – Davi Lima May 7 at 14:25

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.