Reputation: 1
I'm going to start working on a project with 2 friends and we're all using Visual Studio 2013 Ultimate. I'm currently using TortoiseSVN but then it gets messy when updating removes the code i written. Is there like a live editor plugin? so like one person can work on Toolbox.cpp and then after he saves it it will sync to the other team members?
Upvotes: 0
Views: 4399
Reputation: 55
I would check out git. Here are some links to get you started!
Super Simple Getting Started Guide http://rogerdudler.github.io/git-guide/
Learn Git in 15 minutes by doing https://try.github.io/levels/1/challenges/1
Git won't let you work in the same "instance" of a project, but it will allow you to merge your changes and see those changes before you merge. It will also allow you to go back to previous versions of your project.
Git knowledge and usage is par for the course in many places. My friend was only asked 1 question in his interview after his resume was looked over; he was asked if he knew how use git.
If you get a chance, make sure you read the git documentation on their website also.
EDIT: Git won't let you work on the same "instance" in terms of a live project where when he types on his side it auto syncs and updates your Toolbox.cpp on your side in real time. You can, however, work on the repository.
Upvotes: 1