Getting Started With Git
Git is a free and open source distributed version control system designed to handle everything from small to very large projects with speed and efficiency. Learn more about it in this series
Getting started with Git - Part 4 - Forking & Making Pull Requests (PR)
Let's learn about forking repositories and making pull requests. When multiple developers work on a repository, it is considered a best practice to disallow pushing directly to the `master` branch. Instead, the commits are made in a different branch and pushed to the remote. Then, a `Pull request`...