Asked 6 years ago
23 Aug 2017
Views 1014
jaydeep

jaydeep posted

Difference between git and github

what is difference between git and github
it look same to me. i have not used untill git or github but i am curios to know that what is difference between git and github
david

david
answered Jun 24 '23 00:00

Git is the version control system that handles tracking changes and managing project history, while GitHub is a web-based platform that hosts Git repositories and provides additional collaboration features for teams and individuals. Git can be used independently without GitHub, but GitHub enhances collaboration and provides a centralized platform for hosting and sharing Git repositories.
ruby-rails

ruby-rails
answered Jun 24 '23 00:00

Git:

Git is a distributed version control system. It is a command-line tool that allows you to track changes in your files and collaborate with others on a project.
It keeps a complete history of changes made to your project, allowing you to easily switch between different versions, create branches for parallel development, and merge changes from different sources.
Git operates locally on your computer, enabling you to work offline and commit changes to your local repository.
It provides features like commit, branch, merge, and revert to manage your project's history and track modifications.

GitHub:

GitHub is a web-based platform built around Git. It serves as a hosting service for Git repositories and provides additional collaboration features.
It allows you to store your Git repositories in the cloud, making it easier to share and collaborate with others on your projects.
GitHub provides a web interface for managing repositories, performing tasks like creating and managing branches, viewing commit history, comparing changes, and resolving conflicts.
It offers features like pull requests, issue tracking, code review, and project management tools to facilitate collaboration among team members.
GitHub also provides social features like the ability to follow other users, star repositories, and discover open-source projects.
Post Answer