我已经看到了一些类似的问题,但是他们没有帮我解决这个问题,而且我找不到任何教程(说实话,我不确定我在寻找什么)。另外,我没有使用git除了拉/推GitHub,这就是为什么(至少我相信)我很困惑! GitHub让我为设置回购而烦恼!
sudo apt-get install git
安装了(我认为)我需要的所有内容。git_test
git init
git add .
git commit
vim .git/description
将说明更改为starships
。我预装了git
git clone destielstarship@
[remote_server]
/starships
1 出现此错误:fatal: Unable to look up destielstarship@
[remote_server]
(port 9418) (A non-recoverable error occurred during a database look-up. )
<小时/> 更新:哎呀!修正了一个尴尬的拼写错误!
答案 0 :(得分:8)
除非您在远程服务器上运行 git-daemon ,否则您可能希望为URI scheme使用ssh而不是git。
要使用SSH作为传输,您可以使用不同的URI方案克隆存储库。例如,假设您的远程主机上的用户名是“destielstarship”,您可以使用以下命令:
git clone ssh://destielstarship@remotehost.example.com/path/to/git_test
在大多数情况下,您可以不使用存储库的.git扩展名,只需要指定远程主机的用户名(如果它与当前登录名不同)。