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"

...

...