What is Git and Why Use it?
In this lesson, we'll discuss the basics of version control with git!
We'll cover the following...
What is version control? #
Managing your project’s files. For example, when building a website, you will have a lot of files, like CSS, HTML, JS, images.
What is Git? #
Git is the world’s most popular version control system.
Why Git? #
Git maintains a complete history of the changes made to any project, it makes collaboration simpler and more productive, and it allows working on multiple features at once. ...