Skip to content

Getting started with Git and GitHub

Freddie Akeroyd edited this page Jul 1, 2016 · 16 revisions

Wiki > Project tools > Working with git and github > Getting started with git and github

(if asked, Choose Checkout-as-is; commit unix style line-endings)

  • Set you username and email address via the command line:
git config --global user.name "YOUR NAME"
git config --global user.email "YOUR EMAIL ADDRESS"

Or from TortoiseGit, select "Setting->Git" and select "global" and enter your details.

  • Set a default commit editor (not needed for TortoiseGit):
git config --global core.editor "start notepad++"
  • Set line-handling and passwords:
git config --global core.autocrlf true
git config --global credential.helper wincred
Clone this wiki locally