vote up 4 vote down star
1

I found this question but the referenced options don't say anything about supporting "blame". What I'm looking for is an integrated way to ask "Who edited the line under the cursor last?".

I know most/all SVN clients give this in some form but I'd like something that makes it easy enough that I can do it on a whim: "Humm, who wrote that? [tap tap] Oh him."

flag

50% accept rate

4 Answers

vote up 4 vote down check

The daily builds of AnkhSVN 2.0 have a completely new annotate (blame) implementation inspired by the TFS annotate feature.

AnkhSVN Annotate Preview

Not really visible in these screenshots, but it uses the Visual Studio editor for syntax coloring, etc. (You can see the sizeof() in the right bottom of the next image is blue). As you can see in the second picture it also allows several commands on the revision regions in the left bar.

It currently doesn't implement the jump to active line. But you can use the Visual Studio goto line (Ctrl+G) command in it. (You might be able to script this in a macro)

The easiest way to start annotate is right click on the editor ->Subversion->Annotate.

AnkhSVN Annotate Commands

[Update 2009-02-03: This feature is now commonly available in the new Stable release]

link|flag
The thing I don't like about AnkhSVN's blame is that you need to right click on the file in the Solution Explorer instead of being able to do it right from the editor. Maybe the newer builds change this, but until then I'll use Tortoise for blame. – crashmstr Jan 20 '09 at 13:02
It is available in the editor context menu in the daily builds. But you can place the command anywhere by using the menu/toolbar customize option from Visual Studio. – Bert Huijben Jan 20 '09 at 15:03
vote up 3 vote down

In VisualSVN supports blame to some extent - you can right-click on a file and select "Blame". However, it pops up a new window, which may not be as integrated as you want.

link|flag
OK. Not near as clean as I'd prefer. (also I, personally, don't want to spend $$) Docs Link? – BCS Jan 19 '09 at 23:06
visualsvn.com/visualsvn/doc but it doesn't mention Blame. I can't say I've ever needed docs for Visual SVN. It just works, basically. – Jon Skeet Jan 19 '09 at 23:10
Dude...Visual SVN at $49 is a godsend...How much did Visual Studio Cost? – Jason Punyon Jan 19 '09 at 23:11
I don't think you can find better value for money – cgreeno Jan 19 '09 at 23:12
@JPunyon $0 ( microsoft.com/eXPress/download ) and using Tortoise isn't that hard. I'm trying to take the cost of getting a blame from low to practically nonexistent – BCS Jan 19 '09 at 23:27
show 7 more comments
vote up 3 vote down

I wrote a Visual Studio macro to get line number info and pass it to tortoiseproc.exe (which is part of TortoiseSVN)

Take a look at the parameter info: http://tortoisesvn.net/docs/release/TortoiseSVN_en/tsvn-automation.html

Here is my macro:


Sub Blame()
  sCurrFileFull = DTE.ActiveDocument.FullName
  Dim activeDoc As Document
  activeDoc = DTE.ActiveDocument
  Dim nLine As Integer
  nLine = activeDoc.Selection.CurrentLine

  sShellCommand = sTorEXE & " /command:blame /startrev:1 /endrev:-1 /path:""" &
                   sCurrFileFull & """ /notempfile /line:" & nLine.ToString()
  Shell(sShellCommand, AppWinStyle.MaximizedFocus, False)
End Sub
link|flag
Nice! Here's the rest the steps I needed to take to get this working 1) Open Tools > Macros > Macro IDE 2) Put crashmstr's code in an existing or new module. 3) Defined sTorEXE to point to TortoiseProc.exe, in my case sTorEXE = "C:\\Program Files\\TortoiseSVN\\bin\\TortoiseProc.exe" 4) Had to make sShellCommand all one line (no linebreak like above). If you have any blue underlines in the IDE, fix the error or the macro may silently fail 5) Made it into a button in Visual Studio by right clicking menu bar > Customize > Macros > [Dragged onto menu bar] – Derek Nov 30 at 16:54
vote up 1 vote down

I use a set of external tools wired to TortoiseProc.exe to perform SVN operations like log, diff, blame, revert, commit, update, etc. Then I create toolbar shortcuts to these external tools so that I have all the basic SVN operations accessible within the IDE.

Here are the steps to create a button to do a blame on the current file:

  1. Go to tools -> external tools and click "Add"
  2. Enter whatever title you want (e.g. "Blame")
  3. For the command, enter the following (the path will be different if you installed TortoiseSVN to a different directory): c:\Program Files\TortoiseSVN\bin\TortoiseProc.exe
  4. For the arguments, enter the following: /command:blame /path:"$(ItemPath)" /notempfile
  5. For the initial directory, enter: $(ItemDir)

Now, whenever you have a file open, simply go to tools -> Blame and it should generate the Blame in a popup window. You can also customize the toolbar and create a shortcut for this external tool to make it even easier.

link|flag
Doesn't get the current line bit and that's what I'm really wanting. – BCS Jan 19 '09 at 23:24
@BCS, use these arguments: /command:blame /path:"$(ItemPath)" /notempfile /line:$(CurLine) /startrev:1 /endrev:-1 – Derek Nov 30 at 17:01

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.