Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

how does version control work?

how does version control usually work? does it save diff files as a trail with hashes to validate the trail?

like image 342
shigeta Avatar asked May 18 '09 06:05

shigeta


People also ask

What is version control with example?

Version control is a system that records changes to a file or set of files over time so that you can recall specific versions later. For the examples in this book, you will use software source code as the files being version controlled, though in reality you can do this with nearly any type of file on a computer.

What are the three types of version control?

The types of VCS are: Local Version Control System. Centralized Version Control System. Distributed Version Control System.


1 Answers

Check out Eric Sinks blog series on version control.

Also, Joel Spolsky wrote Hg Init: a Mercurial tutorial, that finally made me "get" what distributed source control is all about.

There are more than one ways to skin a cat...

like image 97
Daren Thomas Avatar answered Oct 02 '22 21:10

Daren Thomas