What is Git?
+Git is a version control system used for tracking changes in computer files. It is generally used for source code management in software development.
++ Read More +
diff --git a/Wireframe/css/style.css b/Wireframe/css/style.css index e69de29b..3a51d31e 100644 --- a/Wireframe/css/style.css +++ b/Wireframe/css/style.css @@ -0,0 +1,3 @@ +body{ + background-color:rgb(117, 13, 13); +} diff --git a/Wireframe/index.html b/Wireframe/index.html index 67544158..1632943b 100644 --- a/Wireframe/index.html +++ b/Wireframe/index.html @@ -9,5 +9,51 @@
+Version Control System
+Git is a version control system used for tracking changes in computer files. It is generally used for source code management in software development.
+Because let multiple developers work on a project where everyone can upload, edit and manage the source code. And can also work in parallel (with help of Branching and Merging) so that there are no code conflicts between them and all developers can work without losing or affecting each other’s work!.
+
+ Branching means you diverge from the main line of development and continue to do work without messing with that main line
+