I initialized a folder with git init
.
The size of contents in that is around 600MB. After doing git add
, The size of .git
became 600MB, So, It literally stores all the contents of my files? I thought git add
just considers the files as to be tracked, But If that is true, The size shouldn't be that large, Right?
Correct Me, If I am wrong.
If yes, can you suggest something more simple for tracking my changes locally?
Update: Even with git gc
, Size didn't change much
Actually My requirement is, I am storing Videos, Text Files, Pdf Files etc... And I keep changing them, So, I want to go back sometimes.
Due to large size of Videos, It is increasingly bloated.
I think there is no other choice other that git
. Thanks Guys