2
Core ConceptsCore Concepts
Version Control Systems. Lots of different names, samebasic concepts. Repositories containing a set of files, andoptionally, and a set (or sets) of files which representdifferent branches of development or released versions of files.Everyone agrees using a VCS of some kind is a good idea.Why?
●
Track changes over time, and roll back changes if needed
●
Maintain old versions of code
●
Coordinate distributed, parallel development by manypeople.
●
Communication!!!
●
Act as a simple ”just in time backup” of an individualcoders' work.Virtually all VCS systems share some common concept:repos, branches, and tags
Add a Comment