Closed TheRojam closed 5 years ago
You can do it manually. Go to the right folder and run:
git init
git remote add origin ssh://user@host/srv/git/example
git add .
git commit -m "First commit."
git push -u origin master
This will init repository, add remote, and pushes all files in that directory to remote branch master.
Where can i set the repo-url for this?