从共享主机bluehost获取git存储库

时间:2016-01-20 13:09:31

标签: git repository shared-hosting

我已经在其上安装了git的共享主机,我在某个目录上创建了存储库并对文件进行了一些更改并进行了提交。
现在我需要在计算机上恢复对本地版本的更改。

问题是我无法使用远程命令获取存储库路径。

我用过:

git init

创建存储库。

命令:

git config --get remote.origin.url

返回空白

我无法使用:

git clone

路径错误。

这是生活主持人的配置文件

[core]
    repositoryformatversion = 0
    filemode = true
    bare = false
    logallrefupdates = true

我应该使用什么命令来克隆本地工作站上的远程Bluehost存储库?

1 个答案:

答案 0 :(得分:1)

如果你有enabled ssh access to your Bluehost server,那么git clone命令就是(见ssh connection):

git clone username@yourserver:path/to/repo.git

替换:

    您在Bluehost上的用户名
  • username
  • Bluehost服务器fqn(完全限定名称)的
  • yourserver
  • path/to/repo.git您家后面的回购路径的相对路径:/home/username/path/to/repo.git