Git & GitHub - The Simple Guide
Hi Buddy! How are you, If you are a tech or geeky person then you hear a lot of Git and Github, or if you are seeking to be a part of an open-source contributor then you must have to learn about Git and Github. So let's start... What is Git? Git is a version control system(VCS) for tracking changes in computer files and coordinating work on these files among multiple people. It was created by "Linus Torvalds" in 2005, he was also a developer of Linux Kernel which is also a part of the open-source community Git is a distributed version control system, so git does not necessarily rely on a central server to store all the versions of the project's files. Instead, every user "clone" a copy of the repository (a collection of files) and has the full history of the project on their own hard drive. This clone has all the metadata of the original, while the original itself is stored on a self-hosted server or a third-party hosting service like GitHub and GitLab. W...