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?
- 2Git is a protocol-specification for a distributed version control system. There are several different Git implementations, including a/the reference. The command-line program is called "git". Github is a site that hosts centralized Git ("master") repositories and adds social / "distributed collaboration" features. Bitbucket Server is a competitor - sort of. But, recommendations for sites is off-topic.user2864740– user28647402016-05-06 05:25:56 +00:00Commented May 6, 2016 at 5:25
Add a comment |
2 Answers
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...).