1 - clone :
git clone url
2 - add a file/folder
git add git commit -m <message>
3 - commit : git commit -a -m <message>
git commit -a -m <message>
4 - set the author:
git config user.email work@example.com git config user.name "whatf at work"
5 - ignore the ssl error:
git config --global http.sslVerify false git config -- global --add http.sslVersion tlsv1.0