我是git的新手,谁能告诉我如何下载这个项目?我不知道为什么作者会用您的用户名替换“kai”,但我只是按照这条指令使用了我的用户名。但是,它提示我输入密码,而我没有设置任何密码。如果我保留原始用户名,它还会提示我输入密码。我所做的就是
git config --global user.name luming
git config --global user.email \myemail
git clone luming@fishercat.sr.unh.edu:/srv/git/psc
git clone kai@fishercat.sr.unh.edu:/srv/git/psc
相应的输出是
luming@fishercat.sr.unh.edu's password:
kai@fishercat.sr.unh.edu's password:
来自网站的指示写道:
//Get the code (replace “kai” with your user name):
[kai@mbpro tmp]$ git clone kai@fishercat.sr.unh.edu:/srv/git/psc
Initialized empty Git repository in /Users/kai/tmp/psc/.git/
remote: Counting objects: 918, done.
remote: Compressing objects: 100% (523/523), done.
remote: Total 918 (delta 626), reused 581 (delta 384)
Receiving objects: 100% (918/918), 308.78 KiB, done.
Resolving deltas: 100% (626/626), done.
我只想下载并使用它。那么有谁能告诉我如何下载这个项目?提前致谢! PS:网络链接为http://fishercat.sr.unh.edu/psc/installation.html#installing-the-code-from-the-git-repo
答案 0 :(得分:0)
答案 1 :(得分:0)
您需要有权访问该服务器,可能是密钥交换,也可能是该服务器的密码。当您使用username@url.git时,您在该服务器中指定了您的用户名,并指定了git存储库的URL(url.git)。因此,根据信息(我也尝试过),您需要拥有该服务器的用户名和密码,或者您必须与该服务器进行公钥或私钥交换。 (你有私钥或公钥吗?)