By the way, git blaming is really misunderstood by a lot of people; its NOT about who did it, its about which commit is to blame -- that's different.
Isn't this sort of an inconsequential point? The commit still has one and only one author and that's almost certainly what I'm looking for so I know who to go ask questions about their code. I also use it to find the commit but less frequently.
Show HN: "Git who" – A new CLI tool for industrial-scale Git blaming
91–100 of 130 posts
Re: Show HN: "Git who" – A new CLI tool for industrial-scale Git blaming
#92By the way, git blaming is really misunderstood by a lot of people; its NOT about who did it, its about which commit is to blame -- that's different.
No. You are thinking of git bisect
Re: Show HN: "Git who" – A new CLI tool for industrial-scale Git blaming
#93By the way, git blaming is really misunderstood by a lot of people; its NOT about who did it, its about which commit is to blame -- that's different.
git bisect is about which commit is to blame for a reproducible problem. git blame is about which author most recently touched each line (in what commit); i.e. is to "blame" for that line having its current content. You're right in that git blame is most useful for finding which commit touched a line. What was done in the commit is more important than who did it. git blame is very useful even in a solo project where…
Re: Show HN: "Git who" – A new CLI tool for industrial-scale Git blaming
#94Re: Show HN: "Git who" – A new CLI tool for industrial-scale Git blaming
#95Re: Show HN: "Git who" – A new CLI tool for industrial-scale Git blaming
#96By the way, git blaming is really misunderstood by a lot of people; its NOT about who did it, its about which commit is to blame -- that's different.
No. You are thinking of git bisect
Re: Show HN: "Git who" – A new CLI tool for industrial-scale Git blaming
#97Earlier quoted context omitted.
I am guessing it only resorts to that expansion if it dosesn't _already_ know about the command, because $(printf '#!/bin/sh\necho pwned\n' > /bin/git-status; chmod 755 /bin/git-status; git status) results in the thing happening that you'd expect, not a mysterious message FWIW, both brew and kubectl also have adopted this behavior (of $(basename)-plugin style verb extensions) so I find it unlikely they'd all do it if…
probably adding a confirmation message the first time the alias is used for each command would be good, it would be nice to know when i'm invoking git and when i'm invoking a third party binary regardless of any exploit attempts!
Re: Show HN: "Git who" – A new CLI tool for industrial-scale Git blaming
#98I look forward to the inevitable upgraded version, “git whom”.
Re: Show HN: "Git who" – A new CLI tool for industrial-scale Git blaming
#99I would love to see this get a brew release.
Re: Show HN: "Git who" – A new CLI tool for industrial-scale Git blaming
#100Earlier quoted context omitted.
I'm pretty sure it's about who wrote the code. 'git blame' is named after the subversion and CVS blame features that do the same thing. Subversion docs are clear that it's a snarky name and that 'svn praise' and 'svn annotate' are neutral synonyms. Perhaps someone familiar with CVS can comment on its history there since it seems to be the first source control to add it. EDIT: and one of the main reasons it's a useful…
> Subversion docs are clear that it's a snarky name and that 'svn praise' and 'svn annotate' are neutral synonyms. A few years ago, some Atlassian developer changed "Blame" in the BitBucket UI to "Annotate". I remember a lot of people being frustrated because they couldn't find "blame" anywhere and the change was never officially announced. It just happened one day Someone opened a ticket with BitBucket about it whic…
Nomenclature matters. Do not reinvent terms just for fun.