Git and Github

Git and Github Differences Explained In Short

Posted On
Posted By admin

Often, the terms Git and Github are used interchangeably. Those new to Git and Github often find this confusing. In this post, I will try to clear some confusion.

What is Git?

In very simple terms, Git is a local version control system. Unlike other version control systems like SVN and CVS, it creates a local repository. It can be used to track changes to files.

What is Github?

Github is a git repository hosting service. It can be used to share git repositories across teams.  In addition to Github, there are other git repository hosting services like Gitlab, Bitbucket, etc.

Git and Github Differences

The following table lists the differences between Git and Github:

GitGithub
Version control system that can be used to track changes to filesGit repository hosting service that can be used to share git repositories across teams.
Is a command line toolHas a Graphical User Interface
Needs to be installed locally on the systemDoes not require any additional software to be installed
Other version control systems include SVN, CVS, etc.Other Git repository hosting systems include Gitlab, Bitbucket, etc.

More about Git and Github

It is important to understand that Git is a local version control system. If you are the only developer working on the code, this is fine, however, if you would like to collaborate with other developers and share your code, you will need to use a git repository hosting service like Github. Thus, Git and Github are complementary to each other.

Further Reading

Conclusion

So, in this article, we understood some basic concepts related to Git and Github. We also took a look at some of the major differences between the two.

If you like this post, please do let me know via the comments box below.  You can also connect with me via my Facebook Page or subscribe to my Youtube channel!

Related Post