## Starting in an existing folder & adding online repo
git init
git remote add origin git@gitlab:somascope.com/some-project.git
## After doing some things
git add . (add all changes to next commit)
git commit -m "add xyz" (commit with a message)
## Push local git to online repo
git push <REMOTENAME> <BRANCHNAME>
git push -u origin master (First time, push local branch master to remote branch master)
git push origin master