Click here to Skip to main content
15,881,281 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
I am using Visual Studio 2017, developing Windows apps. I will be looking to hire a couple programmers soon and will need to make sure the new guys don't step on my previous work.

I've used Visual Source Safe quite a bit over the years, but have not needed version control in over ten years.

What I have tried:

Looking for recommendations and suggestions from fellow programmers.
Posted
Updated 7-Mar-19 14:14pm
Comments
PIEBALDconsult 7-Mar-19 23:29pm    
Roll your own.

I'd look into git. You can run a git server and have your devs connect to it. Visual Studio supports git so you can check in\out, examine history etc right from VS, and you'll probably want a dedicated git client too for maybe more advanced tasks. Popular git clients are git extensions, source tree and there are no doubt others.

Another option is TFS, but that's not free.
 
Share this answer
 
GIT is a distributed source control system, it creates a local copy of the repository.
There's also Subversion which uses a central repository to keep the data.

So if you want to look at top 10 VCS's see Top 10 Version Control Systems – Hacker Noon[^]

and for a visual guide to VCS's see A Visual Guide to Version Control – BetterExplained[^]
 
Share this answer
 

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