blame
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.[详细]
2023-04-08 04:34 分类:问答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[详细]
2023-03-25 22:23 分类:问答how to find recent committers of a file in git?
Is there a way 开发者_如何转开发to find who recently changed a file in git? For exaxmple, I need last 5 people who changed this file. I tried git annotate and git blame but I could not find the exact[详细]
2023-03-24 01:46 分类:问答A clearcase equivalent of svn blame / git blame?
In Rational Software\'s Clear开发者_运维问答case, is there a cleartool subcommand, or other command line tool, equivalent to the blame command in SVN or in git?The closest one would be with cleartool[详细]
2023-03-22 17:52 分类:问答How can I view prior commits with git blame?
Is it possible to see who edited a specific line before the commit reported by git blame, like a history of commits for a given line?[详细]
2023-02-13 14:46 分类:问答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 +02001) package co[详细]
2023-02-03 01:31 分类:问答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.[详细]
2023-01-22 05:20 分类:问答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 bran[详细]
2022-12-27 10:47 分类:问答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[详细]
2022-12-13 07:04 分类:问答