Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
当我在 Visual Studio 上列出 Branch1 和 Branch2 之间的待处理合并时,它会显示它们。但如果我使用 tf 它不会。我用来列出与 TF 的待处理合并的命令是:
tf merge /candidate Branch1 Branch2
我得到
没有要合并的更改。
为什么 TF 显示没有待处理的合并?
我正在使用带有 TFS 2013 的 Visual Studio 2013。
您需要添加/recursive标志,否则tf merge只会比较文件夹而不会检查子元素。
/recursive
tf merge
当然,您需要在正确位置的工作区中运行命令。