The last line of this answer prompted me to ask this question . I know to know at a conceptual level the difference between Git and GitHub .
-
6Please do some minimal research of your own before you ask. – yannis Nov 02 '12 at 07:51
-
1@YannisRizos It might seem basic, but I actually like this question. I've seen many, many people who don't understand the difference between Git and GitHub, especially since there are Git clients named "GitHub". – Stephen Jennings Nov 02 '12 at 07:53
-
1@StephenJennings Some minimal prior research is a requirement for all our questions, regardless of their level. I kinda like it too, but that's irrelevant, I'm speaking as a mod here. – yannis Nov 02 '12 at 08:05
-
@YannisRizos point taken . – Geek Nov 02 '12 at 08:08
-
4@Geek An excellent guide on how to ask programming questions: [What have you tried?](http://mattgemmell.com/2008/12/08/what-have-you-tried/) (also if you hover over the up and down vote arrows, you'll see that the main thing we vote for is research - or lack of) – yannis Nov 02 '12 at 08:11
1 Answers
Git is the distributed version control system. Git is responsible for keeping track of changes to content (usually source code files), and it provides mechanisms for sharing that content with others.
GitHub is a company that provides Git repository hosting. If your team has a shared repository on GitHub, you could conceivably use GitHub without ever looking at its website. But, the website provides a lot of value on top of the core Git repository.
GitHub also developed graphical Git clients: GitHub for Mac and GitHub for Windows. Each is an application that lets you interact with Git repositories without using the command line.
Concepts from Git: Repositories, branches, remotes, committing, pushing, pulling, merging, rebasing, reverting, and cherry-picking.
Concepts from GitHub: Pull requests, issues, wikis, forking someone else's repository, Gists, github.com.

- 398
- 3
- 9
-
1"Forking" is kind of native to git proper, even though git calls the operation "clone", not "fork". – tdammers Nov 02 '12 at 09:31
-
@tdammers That is true. GitHub uses "forking" to mean something slightly more than simply cloning someone else's repository, though, and I wanted to capture that idea. Something like, "cloning a repository with the intention of issuing pull requests back to the root repository." – Stephen Jennings Nov 03 '12 at 04:42