Reputation: 12205
I need to know what folder names are commonly used by Version Control systems. Many VCSs will create a hidden folder, usually in the top level of the source tree, to store the information that they use.
So far, I only know that Git uses .git/
and SVN uses .svn/
.
What are the folder names that other popular VCSs use?
Upvotes: 0
Views: 106
Reputation: 10829
We could probably divide the VCSs into three groups:
Special Subdirectory in each directory
The advantage of this is that each directory in the working copy is a self-contained working copy: you can copy it out somewhere else and it will still work. The obvious disadvantage is the clutter. Using automatic tools to scan over one of these working copies need special filtering or they will return spurious results.
Single special directory for each working copy
Special file system support
Upvotes: 1