Learn Git : Part Deux

Initial configuration

git config --global user.name "Firstname Lastname"
git config --global user.email username@email.com
git config --global color.ui auto

Git cheat sheet

cheatsheet

How to be a part of this repo

How to make your terminal look like mine

Where to go from here?

  • A Visual Git Reference : Visual reference for the most common commands in git.
  • Git for Computer Scientists: Goes into the nitty gritty interals of git. Once you're familiar with how git represents commits and branches internally, the commands will make a lot more sense.
  • https://www.gitignore.io/
  • Git bible : A set of general guidelines on how and when to branch, naming guidelines and other good practices. MUST READ after you're familiar with branching and merging.
  • r/git
  • Git Magic