Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Can't git fetch through SSH

I've setup a git repository one a remote server. Now I'm trying to checkout from it with:

git fetch ssh://[email protected]/~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?

like image 957
alamodey Avatar asked Feb 15 '09 12:02

alamodey


2 Answers

Try

git clone ssh://[email protected]/~username/workfolder/

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:

git push ssh://[email protected]/~username/workfolder/
like image 162
Andy Hume Avatar answered Sep 28 '22 08:09

Andy Hume


git fetch fails because it expects to be run from within an existing git repository. As Andy Hume notes, you must first git clone to create a local copy of an existing repo.

Further, it defines a git remote called origin which is set to the URL that you cloned from. This is the default remote used when you type git fetch or git pull to retrieve new commits into your local repository, and the default destination when you git push to push your new local commits out to a remote repository. You do not need to include ssh://[email protected]/~username/workfolder/ in your push command if that is where you cloned from.

Here are some other useful references, from http://gitready.com/:

  • Pushing and pulling
  • Push only to bare repositories
like image 33
Emil Sit Avatar answered Sep 28 '22 08:09

Emil Sit