The recommended repository file structure is repomain branch
The recommended repository file structure is?
repo/main, branches, versions.
repo/trunk, branches, tags
localhost/trunk, branches, tags.
repo/root, trunk, branches.
Solution
Ans:- The recommended repository file structure is the option (b) repo/trunk, branches, tags.
However, this structure depends on the type of Repository e.g. CVS, SVN, GIT and also depends on the needs of the project. Suppose if the project has dependancies on each other then the option (b) is best one.
1. The (repo/trunk) contains the main and the current development.
2. The (branches) contains a copy of the trunk which the various developers use at different stages of development and after the development they update and commit the code.
3. The (tags) is basically a copy of branch at a certain state, just to keep as a backup. If anything goes wrong at the development branch then they can use it from tags.
