DEV Community

Yechiel Kalmenson
Yechiel Kalmenson

Posted on

Git blameless?

I recently put out a question to my Twitter friends:
Liquid error: internal

I found myself using git blame quite a bit, but that command never sat well with me.

No one likes to be "blamed" for stuff, and everyone thrives better in a blameless culture, so why have a blame command?

Word matter and play a very big role in the culture we build.

I got some great replies on Twitter, but was wondering if anyone on DEV had other aliases they liked?

Top comments (25)

Collapse
 
ben profile image
Ben Halpern

I feel like we often look for antonyms to blame, because that phrasing was obviously the choice of git's maker Torvalds who genuinely enjoys confrontation and condescendence.

But I don't know if praise or credit even who is what we're necessarily looking for. You're looking for details of what happened. Maybe you're looking to find that person and ask them a question, but really you're just looking for a place to start.

So I think something like git story or git journey or git tale or git report.

git if these walls could talk.

Collapse
 
endy_tj profile image
Endy Tjahjono

Subversion uses blame too, and it is older than Git. So maybe this is just Linus using a common term.

Collapse
 
moopet profile image
Ben Sinclair

Wanting to see how the lines have changed over time, presumably with context, is a much harder thing to do than to show the last person who touched a line in a commit, though. I'm not saying it's a bad idea, but at that point... well, it doesn't fit in the gutter of your favourite editor anymore.

Collapse
 
yechielk profile image
Yechiel Kalmenson

Yeah, it's usually the commit message you're after, or the commit hash that you can use to look up the whole commit.

Collapse
 
ben profile image
Ben Halpern

Another possibility: git context

Collapse
 
danielescoz profile image
Daniel Escoz

I've used it to know the author more than once, so I can ask for help with a specific section of the code.

They never remember writing it...

Collapse
 
thepeoplesbourgeois profile image
Josh

git this old repo

Collapse
 
endy_tj profile image
Endy Tjahjono

Git also has git annotate command, which is very similar to git blame.

Collapse
 
defman profile image
Sergey Kislyakov

And the only difference between annotate and blame is the output. annotate should not be used, it exists only for backwards compatibility. You can get annotate-ish output with git blame -c if you want.

Collapse
 
fyodorio profile image
Fyodor

Webstorm uses it btw and I like it 👍

Collapse
 
sebbdk profile image
Sebastian Vargr

Why not just think of it as blaming the commit?

If it’s the shared source it’s the ownership of everyone, someone probably had to review that commit too.

Blame the code. :)

Collapse
 
moopet profile image
Ben Sinclair

Subversion has blame too, but it's an alias for praise and annotate (or ann for short).

I presume Git took blame from Subversion, but didn't bring the others along for the ride. I'd advocate having the others as aliases because it brings familiarity between VCSs, regardless of anything else.

annotate is kinda neutral, but I think who is probably the best solution, because it literally answers the question, "who last touched this?"

Collapse
 
philnash profile image
Phil Nash

How about git down-on-it?

You're looking to go down through the history to see where the line came from.

And by the time you find out, you won't be so worried about who made the commit because you'll be smiling and singing to yourself.

Collapse
 
anwar_nairi profile image
Anwar • Edited

There is this VSCode plugins to let us see the git blame inline, it is called git lens, maybe git lens would fit it?

Collapse
 
enriquemorenotent profile image
Enrique Moreno Tent

git author

Collapse
 
thepeoplesbourgeois profile image
Josh

I'm putting in my vote for git theseus

Collapse
 
thepeoplesbourgeois profile image
Josh

...and a bug report for not being able to have monospace formatting in links, and vice versa

Collapse
 
rad_hombre profile image
Matthew Orndoff

$ git shame🔔

But in all seriousness,
what about $ git owns, as in, this person has 'ownership' over this commit.
This language is without the added baggage of judgement– one way or the other.

Collapse
 
jessekphillips profile image
Jesse Phillips

It doesn't matter the name it will get used to laugh at other programmers.

It is an old conversation, clearly distinguishes what it does from other commands, and we could all use some humility when it comes back as us being the author.

Every programmer should appricate the value in stay consistent with convention. Making up your own terms just makes training harder for all those "intuitive" behaviors of the old system.

Collapse
 
patricktingen profile image
Patrick Tingen • Edited

Actually, you want to know "who" did something, without verdict, so perhaps git who could be a good alternative

Collapse
 
pesko_ profile image
Pesko

haha this is true how blame is a strong word ! I propose git who ? :) more friendly

Collapse
 
pandiyancool profile image
Pandiyan Murugan

I wish to have it like
git kiss, git praise, git smile, git hug, git wakeup

Collapse
 
ajnasz profile image
Lajos Koszti

git blame is OK, don't overthink it, it's just a command...

Collapse
 
herteby profile image
Simon Herteby • Edited

Renaming "blame" seems more like a sign of a humorless culture though 🤷
It's just a funny name, invented by a fellow coder rather than an HR person.

Collapse
 
yechielk profile image
Yechiel Kalmenson

Have you seen the replies to that thread? In not worried about the culture going humorless... 😂