Is it possible to just use git with ssh without Gitea.
I can explain why if needed.
My idea was to make git repo on OpalStack:
git init --bare /home/USER/x/GIT_REPO
Then to add it as remote origin on local PC:
git remote add origin ssh://USER@opal4.opalstack.com/home/USER/x/GIT_REPO
And do push after it:
git push remote
But I get this error
fatal: 'remote' does not appear to be a git repository
fatal: Could not read from remote repository.
Please make sure you have the correct access rights
and the repository exists.
I can do normal SSH via ssh USER@opal4.opalstack.com
My I doing something wrong ? If s, any idea what ?
Or is this not supported by OpalStack ?