devwraps
devwraps

Reputation: 37

What is the difference between "Git" in general and Github?

I know that Github is the most common site programmers use to save and make changes to code, but is this the only software out there? What are other relevant sites that utilize "Git" or version control that I could use?

Upvotes: 1

Views: 75

Answers (2)

cn0047
cn0047

Reputation: 17091

Git is a distributed version control system. More simpler description: it is tool that helps to manage repo with sources.
Wiht purpose to share your repo with other project participants you need a public server where will be hosted your git repo.
GitHub it is web service that provide to you an opportunity to host your repo. You can host it like public or private repo. Also GitHub provide a lot of other helpful features (convenient code-review tool, edit files, manage team, graphs, wiki, gist, etc...).

Upvotes: 2

Aivars
Aivars

Reputation: 93

"Git" is version control system that can use different hosts as server. Many companies use local "Git" servers. Github is one of many public "Git" servers, but it is most popular one.

Upvotes: 1

Related Questions