Versions Compared

Key

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

...

Git needs to know who you are when you make code changes, hence start by defining those informations:

No Format

git config --global user.name "John B"
git config --global user.email "john@be-root.com"

Everyone loves fancy colors, so do yourself a favor and get colored text output when using Git:

No Format

git config --global color.ui "auto"

...

...

Using Git

We strongly suggest that you read the Git documentation as it contains lots of pointers to useful tutorials.

Given that Git is extremely good at branching and merging, we recommend that you always start a new branch for each task that you start.

Further readings