Source: davelms.medium.com

Learn Git Basics in 10 Minutes
Git is a free and open source distributed version control system. It’s incredibly powerful and prevalent in the IT industry, meaning that having at least a basic understanding of Git is crucial for most tech roles.

On ce installed, head to your console of choice and type git --version to verify all is working.

On completion, you will see a hidden directory called .git located in your new directory — you don’t need to worry about what goes on in this directory (it belongs to Git and is where all the magic happens).

Git has detected the new index.html file in your Working Directory and is also informing you that the file is currently untracked.

Related Articles