Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Git, is a version control system that allows you to make commits locally that don't bother anyone else's system. So you can work on your feature locally for a week or so, committing every couple of hours as you make progress, and once its finished and tested, you can then push it to a remote/central server. Thats what distributed means.

Git Resources

A list of some possibly useful external Git resources:

Working on a big feature in SVN, but wanting to be able to locally commit every so often (with Git)

...