If you already have files you can push them using command line instructions below. Otherwise you can start with adding README file to this project.
git config --global user.name "Your name" git config --global user.email "your@email.com"
git clone https://gitlab.imanolbarba.net/imanol/d2playerstat.git cd d2playerstat touch README.md git add README.md git commit -m "add README" git push -u origin master
cd existing_folder git init git remote add origin https://gitlab.imanolbarba.net/imanol/d2playerstat.git git add . git commit git push -u origin master