Yes, so to have one Admin of VSS, Admin is responsible for managing the integrity of the code (merging, resolving conflicts, etc,). Each developer can have their own working copy and send their changes to the Admin. The admin can then compare their files to what is in the 'master' file (*using a free tool like WinMerge <https://winmerge.org/?lang=en>, for example*) and merge the other devs' changes into the master file/s. The devs can get the updated files after the merge and continue working. This is a manual process, and testing could be cumbersome, but for a small team such as yours, it maybe manageable with good communication
I haven't used VSS in a long time, so maybe the workflow has improved. I remember that VSS didn't do a good job of 'locking' files to a user and because of that, code changes would get overwritten if multiple users are working in the same file at the same time. I use Git, and Visual Studio can be set up to use Git <https://git-scm.com/book/en/v2/Appendix-A%3A-Git-in-Other-Environments-Git-in-Visual-Studio> for version control instead of using VSS. On Sunday, September 29, 2019 at 1:36:13 PM UTC-4, Akshay malvankar wrote: > > How means I am create one build folder and working copy separately so I > want copy files from my folder and collect file from other developers and > paste in my main build folder of vss?? This way u talking or other way > > On Sat 28 Sep, 2019, 9:13 PM Manjari Singh, <[email protected] > <javascript:>> wrote: > >> If this is Microsoft vss >> Uninstall vss from all other systems >> Send daily evening code to one person who has vss, let him check in daily >> evening >> Check out daily morning >> >> On Sat, 28 Sep 2019 at 9:07 PM, Akshay malvankar <[email protected] >> <javascript:>> wrote: >> >>> we are 3 developers working on the same project. but diff pages. now we >>> want only 1 developer chekin all other developers changes plus its own >>> changes on VSS, so how to do it, I am new to VSS version controlling so >>> anyone here who can help me on this >>> >>> -- >>> You received this message because you are subscribed to the Google >>> Groups "Angular and AngularJS discussion" group. >>> To unsubscribe from this group and stop receiving emails from it, send >>> an email to [email protected] <javascript:>. >>> To view this discussion on the web visit >>> https://groups.google.com/d/msgid/angular/3db62ec0-66eb-431e-a5cd-7676ae7c0466%40googlegroups.com >>> >>> <https://groups.google.com/d/msgid/angular/3db62ec0-66eb-431e-a5cd-7676ae7c0466%40googlegroups.com?utm_medium=email&utm_source=footer> >>> . >>> >> -- >> Sent from Gmail Mobile >> >> -- >> You received this message because you are subscribed to the Google Groups >> "Angular and AngularJS discussion" group. >> To unsubscribe from this group and stop receiving emails from it, send an >> email to [email protected] <javascript:>. >> To view this discussion on the web visit >> https://groups.google.com/d/msgid/angular/CAMF%2BC3o%3DT-V9LjUg8qZj%3D7j2xk9FLzOwU3VbpfUXjRU-fWGHrA%40mail.gmail.com >> >> <https://groups.google.com/d/msgid/angular/CAMF%2BC3o%3DT-V9LjUg8qZj%3D7j2xk9FLzOwU3VbpfUXjRU-fWGHrA%40mail.gmail.com?utm_medium=email&utm_source=footer> >> . >> > -- You received this message because you are subscribed to the Google Groups "Angular and AngularJS discussion" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/angular/64c4772b-c0ae-4ffb-8bf0-48b7e6444b97%40googlegroups.com.
