blame Questions
4
Solved
I am working on project which is shared by few developers, how to get to know about developer blame in android studio?? any shortcuts or any idea? which will help us to know about code blame.
3
Solved
How would I in git determine all lines still in existence that were from a specific author. Say for example, a Tony had worked on my project and I wanted to find all lines in my develop branch that...
Geithner asked 31/8, 2015 at 22:34
2
For a given commit, I need to run blame on the previous version of each line changed but said commit.
Having a commit that changes lines 2 and 3 on file a, I want a way to see the output of git bl...
Sexton asked 28/6, 2013 at 23:43
8
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 w...
1
Based on my understanding, the command git blame is supposed to show, for each line in a file, the author and the commit in which the line was last modified. So for example, if I run git blame -- "...
4
Solved
There is a file in our git repository in work, I want to find out who merged this file into a branch.
I have the commit hash that identifies the commit (lets say 552a976f1a25f9bad57efb9455e951f6b7...
Prevaricator asked 14/5, 2012 at 15:0
2
Solved
I have a Google Spreadsheet. When I click right mouse button on any cell I can choose Show edit history from context menu.
After that I can see edit history in popup window.
My question is ho...
Fretted asked 9/5, 2020 at 8:22
5
Solved
I'd like to see who contributed which line/change to a file. git-blame does exactly that. So does SourceTree have a git-blame view?
Jeanajeanbaptiste asked 14/5, 2012 at 10:45
7
Solved
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 (...
3
Solved
I'm using Visual Studio 2015 with Git integration. What I'm trying to achieve is going back in the history of a specific line of code.
I know there is Source Control > Annotate. But then I get onl...
Stratosphere asked 2/6, 2016 at 15:21
14
Solved
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?
For example, I run the following (on the superb uncrustify pro...
7
Solved
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 f...
Boatright asked 13/10, 2008 at 6:34
2
Solved
I am looking for the mercurial equivalent of the solution to this question:
How do I "git blame" a deleted line?
In short, I am looking at a mercurial commit where a line was added, and...
2
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 about D, sin...
2
Is it possible to reconstruct a word-by-word history in version control? Ideally, I'd like to do is something like 1) I indicate the range of lines of interest, 2) have the program figure out the c...
1
Can I view the of a file/ a line who committed what and when on bitbucket? Can't find these functions on the site. Thank you!
2
Solved
git blame , on a file , give for each line which was the last commit who have update the line.(like the annotate action on the IDE)
git blame -w do the same , but only if the commit do more than i...
Olfe asked 16/6, 2016 at 19:50
2
Solved
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 allowe...
2
Solved
$ pwd
/data/mdi2/classes
$ git blame -L22,+1 -- utils.js
99b7a802 mdi2/utils.js (user 2015-03-26 21:54:57 +0200 22) #comment
$ git blame -L22,+1 99b7a802^ -- utils.js
fatal: no such path mdi2/cla...
2
I'm trying to implement a plugin for Team Foundation Server 2010 that will create reports about users in a team project. Conceptually, all I need in order to properly implement this plugin is acces...
2
Solved
Someone used git push --force but I can't tell who did it from the logs. Is there a way to identify the culprit?
3
I'm familiar with using git blame on the commandline to show which commit changed a particular line of a file.
Is there a similar function to show which commit last changed the file "mode"/flags? ...
2
Solved
In Rational Software's Clearcase, is there a cleartool subcommand, or other command line tool, equivalent to the blame command in SVN or in git?
Equitation asked 26/7, 2011 at 6:13
5
Solved
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?
3
Solved
I know how to run gblame inside a file.
I know how to grep a content inside all files in a directory.
I'd like to see gblame of particular lines around that one that contains a content. Example:
...
Domicile asked 25/2, 2015 at 16:17
1 Next >
© 2022 - 2024 — McMap. All rights reserved.