up vote 18 down vote favorite
4
share [g+] share [fb]

Creating a patch is very easy in SubVersion, With Tortoise, you right-click and select Create Patch. But for the life of me, I can't find this functionality in TFS. Is this possible?

If not, what's the standard way to submit patches in open source TFS hosted projects (a la CodePlex)?

link|improve this question

feedback

4 Answers

up vote 17 down vote accepted
tf diff /shelveset:shelveset /format:unified

Edit: This writes to standard output. You can pipe the output to a file.

link|improve this answer
1  
Can you explain a bit more? 1. How would you apply this patch? 2. Also, if the project is read-only to the patcher, he can't create a shelveset, can he? – Doron Yaacoby Jan 12 '10 at 14:01
There's a standard UNIX program called "patch" that applies unified diffs to source trees. I'm sure you could find a Windows implementation, or you could use Cygwin. – Curt Hagenlocher Jan 31 '10 at 17:56
@Doron this displays all differences between the shelveset and the current workspace folder in a format similar to: hg.shrinkrays.net/spruce/changeset/0d00e3c15e2c/raw/… – Chris S Jan 27 '11 at 14:47
feedback

Codeplex uses is own client for creating patches see: http://www.codeplex.com/CodePlexClient/Wiki/View.aspx?title=HowToContribute&referringTitle=Home

link|improve this answer
feedback

Curt, can that create a separate file (like SubVersions .patch)?

Edward, thanks, but I would love to do that without having to download yet another app. And yes, I'm being nitpicky.

link|improve this answer
feedback

Because TFS doesn't natively support patch files, the most common thing I see people do on CodePlex is simply zip the modified files and upload the zip. The project coordinator then does a diff against their own checkout.

However since CodePlex also supports TortoiseSVN, more and more people are using that to create their patch files.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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