Problem
You need to install Git on Windows? You got a new laptop and recreate your development environment by installing Git on Windows?
Solution
- Download the latest Git for Windows installer from https://gitforwindows.org/.
- Finish the installer. The default option are fitting for most users.
- Open a cli (command line) or the Git Bash (if you choose not to use Git from the Windows Command Line)
- Setup your username and email for Git like this:
git config --global user.name $name git config --global user.email $emai
l
Replace the $name and $email with your Name and your email address.
Best,
Frank