In a git repository, where do your files live? (jvns.ca)
from learnbyexample@programming.dev to programming@programming.dev on 20 Sep 2023 13:52
https://programming.dev/post/3255930

#programming

threaded - newest

Kissaki@feddit.de on 20 Sep 2023 14:15 next collapse

In the object store. Object store is then packed into packs.

git-scm.com/book/en/v2/Git-Internals-Git-Objects

I’d link a good github intro article too but I don’t have it at hand.

/edit: IIRC not the one I thought of but

ellotheth@artemis.camp on 20 Sep 2023 21:30 collapse

The post you have commented on is a link to a blog post that answers the question.

[deleted] on 21 Sep 2023 07:10 next collapse

.

Kissaki@feddit.de on 21 Sep 2023 10:27 next collapse

Oops, I indeed hadn’t noticed.

Lmaydev@programming.dev on 23 Sep 2023 18:48 collapse

This is why I really dislike rhetorical questions as titles haha

notabot@lemm.ee on 20 Sep 2023 17:33 collapse

There are multiple copies of your files; the obvious one is your ‘working copy’, which is just the files on your machine that you work on. The second copy is in your local object store (in the .git directory). Git stores the committed data and it’s metadata there. Then there’s the remote copy on your git server if you push your commits to one.

Git uses the difference between the data in your ‘working copy’ and your object store to work out what you’ve changed and so needs commiting.