Git

Basic Knowledge

  • Tell Git who you are, used when committing:
    • git config --global user.name "John Doe"
    • git config --global user.email "[email protected]"
  • Generate an SSH key for use with Git:

Articles