1
0
mirror of https://github.com/adambard/learnxinyminutes-docs.git synced 2025-08-17 20:11:57 +02:00
This commit is contained in:
Jake Prather
2013-07-18 16:48:58 -05:00
parent eef26a0841
commit 033c3bd770

View File

@@ -32,7 +32,11 @@ of your source code.
// Centralized Versioning VS Distributed Versioning
///////////////////////////////////////
[Detailed Information & Images.](http://git-scm.com/book/en/Getting-Started-About-Version-Control)
* Centralized version control focuses on synchronizing, tracking, and backing up files.
* Distributed version control focuses on sharing changes. Every change has a unique id.
* Distributed systems have no defined structure. You could easily have a SVN style, centralized system, with git.
[Additional Information](http://git-scm.com/book/en/Getting-Started-About-Version-Control)
///////////////////////////////////////
// Why Use Git?