git clone https://@opensourceprojects.eu/git/p/schematic/code schematic-code
Empty Repository
It looks like this Git repository doesn't have any files in it. Let's commit your project code now. Just run the commands below.
First time using Git
cd myproject
git init
# add all your files. Use can use specific filenames or directories instead of '.'
git add .
git commit -a -m 'Initial commit'
git remote add origin https://*anonymous@opensourceprojects.eu/git/p/schematic/code
git push origin master
git branch --set-upstream master origin/master # so 'git pull' will work later
Existing repository using Git
cd myproject
git remote add origin https://*anonymous@opensourceprojects.eu/git/p/schematic/code
git push origin master
git branch --set-upstream master origin/master # so 'git pull' will work later