Skip to content

Getting started with Git and GitHub

Potter edited this page May 5, 2016 · 16 revisions
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