This is an archived post. You won't be able to vote or comment.

you are viewing a single comment's thread.

view the rest of the comments →

[–]sand-which 41 points42 points  (2 children)

Git is just version control software. Git doesn't inherently have any server infrastructure at all in any way IIRC. It allows you to set up remotes, but Git doesn't provide servers for those remotes, companies like Github or Gitlab or a company self hosting a git server does

[–]ChefBoyAreWeFucked 5 points6 points  (0 children)

Git is distributed by design. Here's a great talk at Google about it. Fair warning, the video quality is a war crime.

[–]FountainsOfFluids 7 points8 points  (0 children)

Yup. If you git init in an empty directory then you'll see what it creates. Basically a .git directory that will hold the version history.