使用copssh,我已经设置了自己的git服务器,其操作系统是windows 2012.
我已经创建了一个git存储库
here
正如您在图片中看到的,有一个名为&#34的git存储库; vacationsabroad.git"
在我的本地电脑中,我将克隆此存储库。 所以我使用以下命令。
def dictionary(file):
in_file=open(ficheiro, 'r')
words=[]
d={}
lines=in_file.readlines()
for line in lines:
words=words+line.split(' ')
for j in words:
if (j not in d):
d[j] = []
for i in range(len(lines)):
if j in lines[i]:
d[j].append(i)
return d
但是我得到了致命的错误:
致命:' /cygdrive/c/cossh/home/admin/git/vacationsabroad.git'似乎不是一个git存储库 致命的:无法从远程存储库读取。
请确保您拥有正确的访问权限 存储库存在。
我该如何解决这个问题?
答案 0 :(得分:0)
使用copssh和git服务器时,可能必须使用以下命令。
To check out a repository: git clone {username}@{servername}:{repodriveletter}:/{repopath}
所以你的命令可能是这样的。
git clone administrator@myserverip:c:/cossh/home/admin/git/vacationsabroad.git
希望它会对你有所帮助。如果它不起作用,请告诉我。