From 88034df44d73b6913ec760b919816da9803d555c Mon Sep 17 00:00:00 2001 From: Laud Gilbert Date: Wed, 4 Jan 2023 14:30:56 +0000 Subject: [PATCH] Defining Version Control Systems (#3157) * Update readme.md Definition and examples of Version Control Systems. * Update content/roadmaps/117-flutter/content/104-version-control-systems/readme.md * Update content/roadmaps/117-flutter/content/104-version-control-systems/readme.md Co-authored-by: Kamran Ahmed --- .../content/104-version-control-systems/readme.md | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/content/roadmaps/117-flutter/content/104-version-control-systems/readme.md b/content/roadmaps/117-flutter/content/104-version-control-systems/readme.md index 5e0249474..b9310f97b 100644 --- a/content/roadmaps/117-flutter/content/104-version-control-systems/readme.md +++ b/content/roadmaps/117-flutter/content/104-version-control-systems/readme.md @@ -1 +1,9 @@ -# 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. + +Visit the following resources to learn more: + +- [Version Control System Introduction](https://www.youtube.com/watch?v=zbKdDsNNOhg) +- [Git & GitHub Crash Course For Beginners](https://www.youtube.com/watch?v=SWYqp7iY_Tc) +- [Learn Git in 20 Minutes](https://youtu.be/Y9XZQO1n_7c?t=21)