From cc8e734060b42169a59d12248e147813294143b6 Mon Sep 17 00:00:00 2001 From: Kamran Ahmed Date: Sat, 13 Aug 2022 18:27:28 +0400 Subject: [PATCH] Add version control systems resources --- .../103-version-control-systems/100-basic-git-usage.md | 9 ++++++++- .../content/103-version-control-systems/readme.md | 9 ++++++++- 2 files changed, 16 insertions(+), 2 deletions(-) diff --git a/content/roadmaps/107-python/content/103-version-control-systems/100-basic-git-usage.md b/content/roadmaps/107-python/content/103-version-control-systems/100-basic-git-usage.md index 542fd27be..dca611bbf 100644 --- a/content/roadmaps/107-python/content/103-version-control-systems/100-basic-git-usage.md +++ b/content/roadmaps/107-python/content/103-version-control-systems/100-basic-git-usage.md @@ -1 +1,8 @@ -# Basic git usage \ No newline at end of file +# Git + +[Git](https://git-scm.com/) is a free and open source distributed version control system designed to handle everything from small to very large projects with speed and efficiency. + +Free Content +Version Control System Introduction +Git & GitHub Crash Course For Beginners +Learn Git in 20 Minutes diff --git a/content/roadmaps/107-python/content/103-version-control-systems/readme.md b/content/roadmaps/107-python/content/103-version-control-systems/readme.md index 5e0249474..d9d2d2bf4 100644 --- a/content/roadmaps/107-python/content/103-version-control-systems/readme.md +++ b/content/roadmaps/107-python/content/103-version-control-systems/readme.md @@ -1 +1,8 @@ -# Version control systems \ No newline at end of file +# Version Control Systems + +Version control systems allow you to track changes to your codebase/files over time. They allow you to go back to some previous version of the codebase without any issues. Also, they help in collaborating with people working on the same code – if you’ve ever collaborated with other people on a project, you might already know the frustration of copying and merging the changes from someone else into your codebase; version control systems allow you to get rid of this issue. + +Free Content +Version Control System Introduction +Git & GitHub Crash Course For Beginners +Learn Git in 20 Minutes