Blame is the annotation of source code showing who last edited each section or line.
1
vote
1answer
20 views
Tell git-blame to use imported history
I have a repository which was created by copying files (not the history) from an SVN repository, with many changes added on top since.
I have since converted the history in SVN into git, and merged ...
1
vote
1answer
39 views
git blame: correct author after merge
A GIT merge introduces a new commit. This causes problems with "git blame": the merged lines appear to be committed by the developer that did the merge.
I can understand this being the case for ...
1
vote
1answer
65 views
Git blame -M: unexpected behavior
When using git blame -M in order to detect code movements inside one file, I get results which I cannot explain to myself.
First I commit the following file(file.cpp):
void func1(){return;}[CR][LF]
...
0
votes
2answers
41 views
Merge/diff tool that can show authors (supports blame or annotate) in files under version control
When merging files it will be helpful (as for me) to show an author of each line. Is there any diff or merge tool supporting that?
0
votes
3answers
69 views
sed: parse git --line-porcelain output
this is related to this question, but I think it warrants a separate question.
git blame --line-porcelain's output is something like this
27ce485030bf872158ceb011e6bd775d2ead5eeb 9 36 1
author Joao ...
1
vote
3answers
61 views
How to find a specific change in a specific file in Git
I have a file in a Git project that had a specific value changed at some point by someone; I don't know who or when. I want to find when the change was made, but I'm not sure how I can track that in ...
7
votes
5answers
291 views
Git: discover which commits ever touched a range of lines
I'm having trouble figuring out how to use git blame for getting the set of commits that ever touched a given range of lines. There are similar questions like this one but the accepted answer doesn't ...
40
votes
3answers
3k views
Is simplified semantics for the 'blame' command a good thing?
I'm working on a new weave-based data structure for storing version control history. This will undoubtedly cause some religious wars about whether it's The Right Way Of Doing Things when it comes out, ...
2
votes
3answers
258 views
Is there git blame gui similar to bzr qannotate?
As a former bzr user and novice to git I'm trying to find good GUI tool for git blame similar to bzr qannotate. The latter has 2 major views:
file content viewer with short annotate information ...
4
votes
1answer
113 views
Mercurial annotate/blame gives incorrect originating revision
I've recently had a problem tracking down a changeset responsible for a specific line in the source file. hg blame was giving me a revision that has never been merged into the branch I was interested ...
1
vote
1answer
75 views
Git blame for all revesions of a file
I'm working with Git repository, and I need to get "blame" data for a file (ex. log-tree.c). So, I'm using the following command
git --git-dir=/home/gh/git/.git --work-tree=/home/gh/git blame ...
1
vote
1answer
54 views
Subversion - Commiting a Re-formatted File
I'll start off by saying that it's entirely possible that this isn't possible - if it's not, that's fine (well, it sucks, but I'll live). I know there are potentially some "well, how would that work ...
3
votes
1answer
153 views
Tortoise SVN tracking changes with single login computer?
I have a development machine that we use to change file and we have SVN as our CM tool. We only have a single login to the computer itself. Is there a way to track the changes in the repository ...
0
votes
1answer
154 views
How to use mercurial source control blame (annotate) functionality on IntelliJ IDEA project?
I just want to see who what the last who modified a specific line of code from inside IntelliJ IDEA (mercurial scm).
0
votes
1answer
210 views
git blame - ignore uncommitted changes
Partial output from git blame <file>:
...
d6182477 (<author> 2012-06-22 09:44:02 -0400 239) ...
d6182477 (<author> 2012-06-22 09:44:02 -0400 240) ...
...
4
votes
3answers
327 views
git blame on a line modified multiple times?
if a line is modified back and forth between 2 versions several times,
git blame seems to show only the latest commits on that line.
would it be possible to let it show all commits on that line?
0
votes
1answer
143 views
What is the equivalence of Git-blame in bazaar?
Is there an equivalence of git blame in bazaar?
If so, what's the command for doing that?
Thanks.
0
votes
0answers
102 views
Mercurial - using LDAP information for blame
We have been using mercurial at out company. Along with mercurial we are using LDAP. Could mercurial be configured along with LDAP so it would store LDAP info in blame ? Case in point - we have a lot ...
5
votes
1answer
509 views
HG: find where a deleted line was removed
I am looking for the mercurial equivalent of the solution to this question:
How do I "blame" a deleted line
In short, I am looking at a mercurial commit where a line was added, and in the ...
4
votes
1answer
706 views
Eclipse with EGit, git-blame info is hard to see
using Eclipse Indigo Service Release 2, with EGit plugin and JDK 1.7. I've seen that it should support blame annotations, but I can't get it to show like I see here on Eclipse Wiki.
Here's how it ...
3
votes
2answers
487 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
725 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 ...
2
votes
1answer
526 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 ...
3
votes
3answers
431 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 ...
1
vote
2answers
154 views
Can I find out who introduced a code change in a SVN repository?
Can I get logs based on content?
Let's say I want to know who introduced the code for a function, I will have to check the logs and their comments (checkin messages). If someone forgot to put in a ...
1
vote
1answer
365 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 ...
47
votes
2answers
10k 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
1answer
3k 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 ...
29
votes
5answers
3k 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
358 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).
...
3
votes
1answer
628 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 ...
4
votes
6answers
618 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 ...
10
votes
3answers
1k 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 ...
1
vote
1answer
80 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 ...
5
votes
1answer
2k 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
358 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 ...
3
votes
1answer
243 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 ...
1
vote
3answers
141 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
2
votes
4answers
497 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 ...
7
votes
5answers
2k 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 ...
4
votes
4answers
474 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 ...
4
votes
6answers
2k 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 ...
