this post was submitted on 06 Oct 2025
833 points (96.7% liked)

Programmer Humor

26817 readers
3260 users here now

Welcome to Programmer Humor!

This is a place where you can post jokes, memes, humor, etc. related to programming!

For sharing awful code theres also Programming Horror.

Rules

founded 2 years ago
MODERATORS
 

Yeah learned this the hard way.

you are viewing a single comment's thread
view the rest of the comments
[–] SaharaMaleikuhm@feddit.org 1 points 3 days ago (2 children)

Why can't you just remove the file?

Because the git history will still keep it completely to be able to restore it once you go to a commit in which it wasn't deleted.

And you cannot tell git to completely forget about it as that requires a rewrite of history and this changes all commit hashes which are touched (and any future ones).

[–] einkorn@feddit.org 6 points 3 days ago

They most likely did in a later commit. However the commit adding it can not be removed as OP said. So in order for git to be able to work properly the file is still in the repository in case someone wants to check out a commit where it still was present.