lab 1 Basic Setup
Goals
- To setup git bash so we all use the same config.
Setup basic git configuration
If you have never used git before, you need to do some setup first. Run the following commands so that git knows your name and email. If you have git already setup, you can skip down to the line ending section.
Execute:
git config --global user.name "Théophile Chevalier" git config --global user.email "[email protected]" git config --global core.editor "code --wait"
Setup Line Ending Preferences
Also, for Unix/Mac users:
Execute:
git config --global core.autocrlf input git config --global core.safecrlf true
And for Windows users:
Execute:
git config --global core.autocrlf true git config --global core.safecrlf true
Setup Python
For this tutorial you need a working Python interpreter. If you haven´t one installed yet, it is time to set it up now: