% git config --global user.name "John Galt"% git config --global user.email jgalt@atlas.com% git config --global push.default simple% git config --global color.ui trueIf you're using macOS or Linux:
% git config --global core.autocrlf inputIf you're using Windows:
% git config --global core.autocrlf true% git clone .git% cd my-repo% git pull% cd my-repo% git status% touch README% git init% git remote add origin git@gitlab.com:jgalt/my-repo.git% git add README% git commit -m 'first commit'% git push -u origin master% cd my-repo% git add Foo.py% git add Bar.py% git commit -m "another commit"% git push