Git

From Piszczynski

Create Local Git Repository

Create a folder for the git repository then use the following command to initialise it as a git repo:

git init

GitHub

Once git is installed and repo is cloned set the global username and password to allow automatic push and pull to work:

  • git config --global user.name "Your Name"
  • git config --global user.email "youremail@yourdomain.com"