我无法克隆我的存储库
我将解释我所做的步骤
1)我正在使用Windows 8
2)运行Git Bash
3)$ mkdir git_ball
4)$ cd git_ball
5)$ git init,在c:/Users/user1/git_ball/.git/中返回Initialized空Git存储库
6)$ ls> LIST.TXT
7)$ git add。
8)$ git commit -m'创建list.txt'
9)$ git config push.default匹配
10)$ git remote add origin / c / Users / user1 / git_ball
11)$ git config http.sslVerify“false”
12)$ git push origin,它给出了:永远的最新版本
13)$ cd ..
14)$ git clone git://192.168.48.189/~/git_ball git_ball2,(192.168.48.189是我本地机器的IP)
它给:
克隆到'git_ball2'......
致命:无法连接到192.168.48.189:
192.168.48.189 [0:192.168.48.189]:errno =没有这样的文件或目录
我不知道缺少什么,我想用我的IP克隆git_ball,你能帮我解决这个问题。这个想法也是使用我的IP将git_ball从另一台PC克隆到同一个LAN网络。
由于
答案 0 :(得分:1)
您错过了配置远程存储库。请看一下这个链接:http://thelucid.com/2008/12/02/git-setting-up-a-remote-repository-and-doing-an-initial-push/。它适用于Linux,但似乎您使用的是git bash
,因此它应该可以正常工作。
基本上,您必须在本地计算机上配置两个存储库:远程和本地存储库。要配置远程存储库:
mkdir remote-repo.git
cd remote-repo.git
git init --bare
此时,您可以重复您的过程来创建本地存储库,在第10点,您将远程设置为remote-repo.git
。