Home  >  Article  >  Development Tools  >  What is the difference between Git and Github?

What is the difference between Git and Github?

藏色散人
藏色散人Original
2018-11-13 17:51:0637235browse

This article mainly introduces to you the difference between Git and Github.

First of all, everyone must know that Git and Github are not the same thing at all. They are two completely different concepts. For some new programmers, the concepts may often be confused just because the two names are similar.

SoWhat is Git? What is GitHub?

Git is an open source distributed version control system, just a version management tool, which is usually used in programming . And Git can be used without the Internet, because it is just a tool, mainly to facilitate the management of your program. To put it simply, the projects we work on sometimes require modifications and other operations, resulting in many versions of the project, and Git is a system tool for controlling these versions.

Regarding what Git is, I have actually introduced it to you in detail in my previous article. Interested friends can refer to it.

And GitHub is just a website, and it is a website that is very suitable for programmers to communicate!

Its official website address: https://github.com/

Programs written by programmers can be placed on this GitHub website, as long as you create it on GitHub An online warehouse is enough. Every time you submit code to the website, others can also see your code and of course modify your code. It is very convenient for communication and learning between programmers!

For example, if you want to learn about the open source code written by a certain big guy, you can just apply for an account and you can check the big guy's open source code at will.

The following is the login homepage of GitHub.

What is the difference between Git and Github?

#After successful registration and login, you can upload your own program source code project, or learn other people's open source code.

In general, Git and GitHub are completely different concepts. Git is a version management tool, while GitHub is a communication platform for programmers. website.

This article is an introduction to the difference between Git and GitHub. I believe that after everyone understands it, the difference will be very clear. I hope to be helpful!

The above is the detailed content of What is the difference between Git and Github?. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Previous article:What is Git?Next article:What is Git?