Changes between Initial Version and Version 1 of VersionControl


Ignore:
Timestamp:
Dec 28, 2014, 5:06:16 PM (10 years ago)
Author:
benjialbert
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • VersionControl

    v1 v1  
     1Version/source code control allows a team of software developers to efficiently share access to a common code-base.  Version control systems allow users to check out source code, make changes and enhancements, merge their changes with the changes others have made (automatically in most cases), and check it back in to make their work visible to others.  Version control systems tack each change (who made it, when, exactly what changed) and can roll back (undo) changes if something went wrong.  Version control allows groups of source files to be tagged with an identifier (e.g. a release number) so those files can be easily retrieved in the future. ...and much more.
     2
     3There are many popular version control systems; the system being used by the FIRST team is [http://svnbook.red-bean.com/ Subversion].  Subversion uses a central repository model where source code is stored on a server and users download copies to their local machines to work on.
     4
     5References:
     6* [http://svnbook.red-bean.com/ Subversion]
     7
     8Tools:
     9* [http://tortoisesvn.net/ TortoiseSVN (Windows subversion client)]
     10