I’ve setup a git repository one a remote server. Now I’m trying to checkout from it with:
git fetch ssh://username@url.com/~username/workfolder/
but I get an error:
fatal: Not a git repository
What am I doing wrong? Could it be the server does not support Git+SSH?
Try
Which will create the repository on your local machine. Any commits you make to that branch are to your local repository, and when you want to push back up to the remote server you can run: