Skip to content

Getting started with Git and GitHub

Adrian Potter edited this page May 9, 2016 · 16 revisions

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

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 (on Windows):
git config --global core.autocrlf true
Clone this wiki locally