Tagged Questions

Blame is the annotation of source code showing who last edited each section or line.

learn more… | top users | synonyms

14
votes
1answer
2k views

Git blame — prior commits?

I love the git blame command, it is very useful for tracking down people who don't own up to writing code. :-) However, it is possible to see who edited a specific line before the commit reported by ...
14
votes
5answers
776 views

Git blame showing no history

When I run git blame on a file (using msysgit) I always get the following sort of printout: 00000000 (Not Committed Yet 2011-01-09 11:21:30 +0200 1) package co 00000000 (Not Committed Yet ...
6
votes
2answers
232 views

Is there a Diff library for java that supports Annotate/Blame?

I'm digging through Google's results for free (open source) Java diff libaries, and there seem quite a bunch of those (some of them even working with generic Objects and not only with Strings). ...
4
votes
6answers
1k views

Which Subversion web interfaces have a blame feature?

I'm looking for a subversion web client ala SVN::Web but with a very specific feature I've always thought would be quite useful. What I want is the ability to find which revision was responsible for ...
3
votes
3answers
54 views

Git: Find last edits from a specific user in a specific file

I have a project which sources are controlled with help of git. Right now I want to find out when my teammate made last edits in a specific file. I want to find out SHA1 of commit or to see his edits ...
3
votes
3answers
246 views

Is there a way to customize the output of git blame?

git log has a nice --format option to specify how the output should be formatted. But git blame doesn't seem to have an equivalent, although default output of blame is not quite human-friendly. I ...
3
votes
1answer
101 views

Tracking SVN changes through multiple merges

At work we use a branching strategy where all changes start off in a development branch, then subsequently make their way through one or more integration branches, and finally end up in a release ...
3
votes
5answers
619 views

Using git to find first introduction of token on a specific line of a file

Let's say I have a file A.cpp, and I notice an error on line 15 of the file. Let's say the error is a "const" on a function that returns a pointer to a member variable, meaning using const on the ...
2
votes
0answers
105 views

Git blame on reorganized SVN repository

git blame isn't showing me the all history of a SVN repository which had its layout reorganized. I'm using git-svn to access a SVN repository. The SVN repository used to have a structure with a vast ...
2
votes
1answer
386 views

How to use git bisect?

I have read some articles saying that git bisect is awesome, however I'm not native speaker and I can't understand why it's awesome. Could you please demonstrate on some code sample what is so ...
2
votes
6answers
186 views

SVN - Does a merge preserve the author so that blame will be correct?

In my team, some we help each other with the merges. I.e. my code is merged back to trunk by someone else. It seems like the author info not is fully preserved during a merge. When I do annotate ...
2
votes
1answer
521 views

Find the git branch or branches from commit id

Actually am try to get a report on merge conflicts. I used 'git blame' to see who has changed what line, but i couldn't find the branch and repository name information. Is there a way to find the ...
2
votes
1answer
208 views

git doesn't show where code was removed

So I was tasked at replacing some dummy code that our project requires for historical compatibility reasons but has mysteriously dropped out sometime since the last release. Since disappearing code ...
2
votes
4answers
136 views

svn: How do I determine the last time a certain line was changed?

I have a bit of code that I would like to see revision history for. In the example file, line 300 contains something "interesting". How can I use svn to see when that line has been changed and ...
2
votes
4answers
278 views

style cleanup that doesn't trample svn blame?

I'd like to use Eclipse's formatter to fix some poorly styled code, but there's a huge downside to killing all the metadata in the repository about who is responsible for what. Any thoughts on ways to ...
1
vote
2answers
69 views

GUI for “svn blame” with a slider for history

Does anyone know UI tool (Eclipse plugin would be great, but any other, for Linux/Windows is acceptable) that allows to see difference of some part of code, but also allows switch between revisions ...
1
vote
1answer
72 views

Blame on an earlier version of a file in a different location

At one point my git repository had its paths reorganized. I often want to do a blame on a file at a revision before the move. What's the git blame incantation to blame a file that doesn't exist in ...
1
vote
1answer
105 views

How do I git blame without seeing merges

If I've got a file whose history is like this: ----A----B \ \ C----D----E and I do a blame from E then I'd like to see what changed in revisions B & C, but I don't really care ...
1
vote
1answer
223 views

How to 'git blame' on the remote-side repository?

on my server I host my personal git remote-side projects (with gitosis), and I have built a web interface to browse the repositories (something like Github). On the remote-side, you are not allowed ...
1
vote
1answer
76 views

Is there a way to blame someone else or be able to change the blamee in subversion/TortoiseSVN?

I have a project I am working on that is being version controlled on a local machine. I have changes made by another person outside of the network/company that I need to incorporate into my project ...
1
vote
3answers
114 views

How do I list everyone who has ever committed to a file in Git?

I want to get a complete list of everyone who has ever committed to a file, is there a command (blame with some arguments, maybe) do that nicely? Thanks
0
votes
2answers
65 views

Can i find out who introduced a code change in a svn repository?

I am basically asking for logs based on content ? Typically the scenario would be, let say a function code I want to know who introduced. I will have to check the logs and comments. if someone forgot ...
0
votes
2answers
264 views

What happens when I click “Blame Differences” in TortoiseSVN log?

when I was checking the latest difference in code in SVN Log, accidently I clicked blame differences insted of show differences. Now, when I check the log again I do not see anything visible related ...