我在codeplex上托管的项目的源代码中做了一些更改。 我不是该项目的作者或编辑 - 只是一个用户。 但我想将这些更改作为补丁提交。
Codeplex有一个很好的方法来上传补丁...
如何在Visual Studio中生成补丁或差异?如何生成另一个VS开发人员可以应用来更新其源代码的内容? VS是否具有补丁/差异功能?
感谢。
答案 0 :(得分:1)
使用TFS command line tool, tf.exe:
tf diff <file> | more
示例输出:
61,65c61
<
< this.countdownDelay = (menuItem.Text == "none")
< ? 0
< : int.Parse(menuItem.Text, CultureInfo.InvariantCulture);
<
---
> this.countdownDelay = int.Parse(menuItem.Text, CultureInfo.InvariantCulture);
136d131
< this.AddCountdownTimeMenuItem("none", parentItem);