What is the need for VCS?
Version Control Systems(VCS) are a software tools that help a software team to manage changes to source code over time. Version Control Software keeps track of every modification to the source.
- IF a mistake is made....
- developer can turn back the clock.
- compare earlier versions of the code to help fix the mistake.
- minimizing disruption to all team members.
- When using VCS the team can,
- Everybody on the team is able to work absolutely freely on any file at any time.
- The VCS will later allow you to merge all the changes in to a common version.
- A VCS acknowledges that there is only one project.
- If the project is damaged it can restore previous versions.
- You can take Backup of your projects.
Comments
Post a Comment