0 votes
in Git by
Why to use Git and GitHub and What are the difference between Git and Github?

Also explain Git Repository vs Prroject

3 Answers

0 votes
by

Git is a version control system of distributed nature that is used to track changes in source code during software development. It aids in coordinating work among programmers, but it can be used to track changes in any set of files. The main objectives of Git are speed, data integrity, and support for distributed, non-linear workflows.

GitHub is a Git repository hosting service, plus it adds many of its own features. GitHub provides a Web-based graphical interface. It also provides access control and several collaboration features, basic task management tools for every project.

0 votes
by

Below are the difference between Git and GitHub.

Git: Git is a distributed version control system for tracking changes in source code during software development. It is designed for coordinating work among programmers, but it can be used to track changes in any set of files. Its goals include speed, data integrity, and support for distributed, non-linear workflows.

GitHub: GitHub is a web-based Git repository hosting service, which offers all of the distributed revision control and source code management (SCM) functionality of Git as well as adding its own features.

0 votes
by

Below are the difference between Git and GitHub.

Git

GitHub

Git is a software

GitHub is a service

Git can be installed locally on the system

GitHub is hosted on the web

Provides a desktop interface called git GUI

Provides a desktop interface called GitHub Desktop.

It does not support user management features

Provides built-in user management

Related questions

0 votes
0 votes
asked Aug 22, 2023 in Git by JackTerrance
0 votes
asked Aug 16, 2020 in Git by RShastri
...