Skip to content

Latest commit

 

History

History
13 lines (9 loc) · 432 Bytes

GIT.md

File metadata and controls

13 lines (9 loc) · 432 Bytes

Install Git on Windows

1. Download Git for Windows

2. Install settings

  • Ajusting your PATH environtment — select „Use Git from the Windows command prompt“
  • Configuring the line endings conversions — select „Checkout as-is, commit as-is“

3. Set global config

git config --global user.name "Name here"
git config --global user.email "Email here"
...