2

In our team it is allowed to make commits only after code review is done.

So quite often colleagues send you a code review request. How are you going to see it available in Visual Studio while connected to local repository instead of Team Server?

Pavel Voronin
  • 13,503
  • 7
  • 71
  • 137

2 Answers2

1

Keep a second Visual Studio running and connected to TFS version control, and flip between them.

Tim Abell
  • 11,186
  • 8
  • 79
  • 110
-2

The most efficient is perhaps to ask someone to do the review on your computer with you.

If that's not possible, the only solution that I see is to squash all the commits and to do a shelve from the remaining commit and after create a code review from this shelve set. Not a perfect solution...

The better solution, like even Microsoft advise, is to migrate to tfs(git) ;-)

Philippe
  • 28,207
  • 6
  • 54
  • 78