this post was submitted on 25 Oct 2023
281 points (97.6% liked)

Programmer Humor

32175 readers
407 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] 19 points 11 months ago (2 children)

I assume the accident was not to force push, but to the wrong branch

[–] [email protected] 13 points 11 months ago

I hope they learned the value of protecting your branches.

[–] [email protected] 2 points 11 months ago* (last edited 11 months ago) (1 children)

This is why I always git push origin +branch_name

[–] [email protected] 1 points 11 months ago* (last edited 11 months ago)

My go-to these days is to push the current branch, dynamically.
git push origin HEAD

Depending on the VC, HEAD has different prefix/suffixes to make it work.

Edit: formatting, also I never checkout master I do origin/master so I cannot even push it with this method. I think