2

At Eclipse there is usefull option "Show annotations". Using it I can find at which revision each line of file is created. How to do the same using visualsvn?

bahrep
  • 29,961
  • 12
  • 103
  • 150
Oleg Vazhnev
  • 23,239
  • 54
  • 171
  • 305

2 Answers2

1

Annotate is called "Blame" in subversion. Annotate is a more nicely put alias that some clients support. VisualSVN uses the original "Blame" name of the command on its context menu.

A related (but not duplicate) SO question: "SVN Blame" plugin for VisualStudio

Community
  • 1
  • 1
Anders Abel
  • 67,989
  • 17
  • 150
  • 217
0

In Visual Studio:

  • Right-click on a file in Solution explorer | VisualSVN | Blame...

    or

  • Right-click in a code editor | VisualSVN | Blame...

Community
  • 1
  • 1
bahrep
  • 29,961
  • 12
  • 103
  • 150