Posts

Showing posts from September, 2019

Git and GitHub

Image
Git and GitHub Git vs. Github comparison is constantly being doubtful for many beginners. Obviously, there are quite few similarities between these two systems but it is the difference between Git and GitHub is the most apropos. Git - git is a system for version control. Preliminary used by programmers and others who write codes. It runs in the command line of your local machine. It allows you to keep the track of your files and modifications to those files in something called repository or repo.  You can use it alone with the repositories or group of people who working on the same project. It is useful in team environment because everyone can work independently on these files, merge their changes together and there is a way to record changes. GitHub -  GitHub is a web site that allows you to upload your git repositories online. What’s the use of uploading files in GitHub?? Well...It provides you ...