% git config --global user.name "John Galt"% git config --global user.email jgalt@atlas.comIf 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@gitlab.com:gpdowning-ut/cs371p.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