Tagged Questions

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
778 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 ...
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
247 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
5answers
623 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
106 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
389 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
1answer
524 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 ...
1
vote
1answer
75 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
225 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
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