Getting Started with Git and Github
Introduction: Git is a simple open source version control system. It stores the information of anything with different versions. Mostly, it is used to store the source code of any application. Other version control softwares include Subversion, Bitbucket. The main use of this version control system is to store different updates of the same project with different versions at the same place. It also helps when multiple people are working on the same project but on a different aspects associated to that project. This is just a command line tool. Github is a git repository hosting service. It is a web based graphical interface that provides version control and source code management features of Git. Workflow of Git: Any local repository (any project stored locally) consists of three trees maintained by git. They are: Working Directory - This holds the actual files. Index - This acts as a staging area. This is kind of storage space between the Working Dire...