github quick start

install git at you laptop

https://git-scm.com/downloads

config git at you laptop

1
2
3
4
git config --global user.name "Your Name"
git config --global user.email "email@example.com"
git config --global core.autocrlf false
git config --global core.safecrlf true

Read More