I set up a git repository in a directory named ABC3
on my remote server public_html/ABC3
.
git init
I want to clone the repository to my local computer. Here's what I do: cd into the directory where I want to work, say Desktop/GitFun
, then I attempt to clone with the following command
git clone myusername@myserver.com:/public_html/ABC3.git
After entering my password I get back the error
fatal: '/public_html/ABC3.git' does not appear to be a git repository
fatal: Could not read from remote repository.
Am I doing it right? ABC3 is the name of the directory, right?
Probably important: I'm working with a Bluehost shared server. On their site they mention installing GIT on a VPS or private server, but nothing about it on the shared server. When I git --version
I get a positive response, 1.7.11.3. Suggestions?