Reputation: 8606
So I see Git doesn't recognize folders, or should I say when the only change between commits is addition of empty folders to the working tree they're not show in git status
after git add .
.
How would you handle the need to add empty folders to the working tree (for runtime storage) and have them be reflected/created when other repositories pull from the current repository (one in which the folders were added)?
Upvotes: 37
Views: 33095
Reputation: 1
For Linux / MAC OSX, use the following one-liner, to create / put empty placeholder files into the folders, recursively, to prevent them from getting ignored, by git:
find . -type d -empty -not -path "./.git/*" -exec touch {}/.gitkeep \;
Hope this helps someone.
Upvotes: 0
Reputation: 330
I am also facing the same issue. I think it has got to do with the way Git tracks changes. It does not track files but rather its contents. When showing the changes, commits or logs it maps the changes to specific files and shows the changes in individual files. See this video for more details Tech Talk: Linus Torvalds on git Linus specifically gives an example about moving a function from one file to another and how git is able to track the change.
Upvotes: 0
Reputation: 19
I faced this problem when trying to use git as a backup tool with support for deduplication and compression.
My solution was to create my own system. It's available on http://github.com/meingbg/store
Again, my purpose was to store files, not work with code.
Upvotes: -2
Reputation: 91050
You should realize that you are asking for your source control system to set up some resources that are not source, not part of your build system, but essential to the operation of your application. I would do one of the following:
Similarly, if the application wanted to append to a log file, it wouldn't make sense to have that logfile start out in the revision control system, would it?
Upvotes: 4
Reputation: 9631
Either put empty placeholder files into the folders you want git to keep track of or add instructions to create these folders to your build system if possible.
Upvotes: 3
Reputation: 128109
I usually put a .gitignore
in those directories as you likely want to ignore any runtime generated data anyway.
Upvotes: 51
Reputation: 100196
You are absolutely correct. Git, like some other version control systems, does not take cognizance of empty folders or of properties of folders. Folders only exist insofar as there are file that are in them. If you want to simulate this, you need to drop placeholder files into them.
Upvotes: 8
Reputation: 40799
People often put an empty file as a placeholder in the folder to overcome that limitation...
Upvotes: 33