Click here to Skip to main content
15,881,424 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
I am in the scenario where multiple projects need to be created in a team, suppose 10 or more projects in a month.
So which will be the best version control software (for VisualS.) where Creating and managing multiple projects will be more efficient.

What I have tried:

Currently I am not using any versioning software. Creating just folders with Project names with latest modified date. Going very difficult finding latest copies within team.
Had tried SVN but couldn't understand how to manage repo in my scenario.
Posted
Updated 1-Jul-20 9:02am

1 solution

I would recommend Git, see: best-version-control-systems[^]
It certainly is not easier than SVN, but much better especially with large projects where you want "rollback" functionality.
You can use visual tools to work with Git which can make things simpler, see: visual-git-guis[^]

If you want to run your own private Git server, I can recommend Gitea, see: self-hosted-web-based-git-repository-managers[^]
 
Share this answer
 
v2
Comments
Member 11632634 6-Jul-20 14:21pm    
Thank you for guidance.

How should I manage/design Repository structure in my case.
1 repo for all projects
or
Seperate repo for each project.
RickZeeland 6-Jul-20 16:23pm    
That's hard to say, if the repo's are large I would recommend keeping them separate.
However if the repo's share code it might be more convenient to start off with one master branch and create "feature branches" (all in the same repo).

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900