To create a new project from a remote CLI.
Create a new directory for your project
mkdir project
Initialize the directory
cd project
git init
If there are existing project files, add them individually or include everything
git add *
Commit the project
git commit
Add a the remote repo
git remote add origin https://git.mydomain.com/<namespace>/<newRepoName>.git
Push the project to the remote repo (-u sets the default upstream branch when pushing)
git push -u origin master