0

I am using the tf.exe vc merge /discard command to remove a few changesets as merge candidates, and was wondering if there was a way to undo this operation?

jessehouwing
  • 106,458
  • 22
  • 256
  • 341

1 Answers1

1

After the merge is checked in, you can roll back the merge for those specific files if I'm not mistaking to revert the loss of the merge ticket.

Worst case you can perform a tf vc merge /force on these files.

jessehouwing
  • 106,458
  • 22
  • 256
  • 341
  • That worked. Thanks! Apparently there's a difference between the Developer Command Prompt for VS2012 vs VS2015. This worked with VS2012. – user2183835 Jan 10 '17 at 16:10