What is Git and Why Should You Use it?
Version control with Git is an industry-standard, and an important skill for anyone working as a developer to learn.
We'll cover the following...
What is version control?
Version control is a means to manage your project’s files. For example, when building a website, you will have a lot of files, like CSS, HTML, JS, and 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 developers to work on multiple features at once.
Tracking history
Git keeps track of all the changes we make to our project.
Suppose you change part of the CSS, and the layout looks great, ...