this post was submitted on 21 Oct 2023
727 points (98.3% liked)

Programmer Humor

32266 readers
56 users here now

Post funny things about programming here! (Or just rant about your favourite programming language.)

Rules:

founded 5 years ago
MODERATORS
 
you are viewing a single comment's thread
view the rest of the comments
[–] [email protected] 32 points 1 year ago* (last edited 1 year ago) (5 children)

That's why I've got my IDE configured to make a commit and push for every single ctrl-s.

And one more thing, I'm not going to squash before my final PR.

EDIT:

For those of you interested, here's my gitconfig alias to help with this workflow:

[alias]
    ctrl-s-commit-push="!f() { count=$(cat count.txt); git add .; git commit -m \"$(date): commit $count\"; git push;}; f"

IMPORTANT: For those who are downvoting, yes, my entire comment is sarcasm, lol! Do not ever do anything like this in a shared repo, ever! If you actually do this in a shared repo, your access will likely be revoked the moment someone sane and competent realizes what you're doing.

Addendum: In that alias, I would've used left angle bracket instead of cat, but apparently lemmy scrubs those. I even tried the entity for it, but no go for either.

[–] [email protected] 9 points 1 year ago

Your sarcasm is brutal! That's sarcasm, right? RIGHT?!

[–] [email protected] 9 points 1 year ago

And one more thing, I’m not going to squash before my final PR.

Pure evil.

[–] [email protected] 4 points 1 year ago

Squash and Force Push. Your whole life in one line.

[–] [email protected] 3 points 1 year ago (4 children)

Wouldn't that mean you just have shit tons of commits? What about the commit message?

[–] [email protected] 7 points 1 year ago
[–] [email protected] 2 points 1 year ago

The more the merrier. I edited my comment above to show my git alias for comments :)

[–] [email protected] 2 points 1 year ago

I'd expect the poo emoji at that point.

[–] [email protected] 0 points 1 year ago (2 children)
[–] [email protected] 3 points 1 year ago

That sounds just awful. But ok.

[–] [email protected] 1 points 1 year ago

I meant whatever works for you, but if a coworker did that I would be fuming

[–] [email protected] 3 points 1 year ago

Combine that with my pre-push hook that runs linting and tests, which takes about 10 minutes, and you're gonna have a good time

I've long ago disabled the tests and only run linting now, i'm not a machochist