Git vs GitHub :

Dilshan Fonseka
2 min readJan 21, 2024

--

If you’re a developer, you have probably heard of git and Github. But what are they, and what’s the difference,

What is Git?

Git is a Version control system for tracking changes in computer files. It is used for coordinating work among several people on a project and tracking progress over time. Basically it is used for source code management in software development.

What is Version Control System?

A Version Control System is a system that records all the changes made to a file or set of files. So a specific version may be called later if needed. This helps in collaboration with all team members.

and Git helps,

  • Git favors both programmers and non technical users by keeping tack of them project files.
  • It allows multiple users to work together
  • Large projects can be handle efficiently.

What is GitHub?

GitHub is a web-based hosting service for Git repositories. It makes Git more user-friendly and also provides a platform for developers to share code with others. In addition, GitHub makes it easy for others to contribute to projects. It also has a robust API that allows developers to integrate GitHub into their own applications and workflows.

Git vs GitHub: What’s the Difference?

Git is a version control system that allows developers to track changes in their code. GitHub is a web-based hosting service for git repositories. In simple terms, you can use git without Github, but you cannot use GitHub without Git. Take note of the following illustration for further information on the distinctions between the two.

--

--