无法创建存储库

时间:2009-11-22 12:05:47

标签: git cygwin

我安装了GIT和Cygwin GIT客户端。当命令窗口打开并出现$ prompt时,我输入:

Git Init

它说:

Baash:找不到命令。

4 个答案:

答案 0 :(得分:3)

小心大写。你应该全部小写:

git init

如果仍然无效,请输入以下命令:

echo $PATH

然后在此命令列出的目录中查找git二进制文件。如果你找不到它在其中一个目录中重新安装git或将你的git二进制文件的目录添加到这个列表中(google“将目录添加到我的路径中”)。

答案 1 :(得分:2)

“Baash”?你有一个脚本,它顶部有#!/ bin / bash,而不是#!/ bin / bash?

答案 2 :(得分:2)

不是吗:

bash: $: command not found

这表明在PATH环境变量中没有引用git? 或者您尝试输入:

$ git init

而不是

git init

(不要输入$

答案 3 :(得分:0)

尝试此命令:

type git

应该回复:

git is /usr/bin/git

尝试:

/usr/bin/git init

哪个应该回复:

Initialized empty Git repository in ...

还可以尝试:

echo $SHELL

应返回:

/bin/bash

您也可以尝试:

file /usr/bin/git

哪个应该给你:

/usr/bin/git: MS-DOS executable PE  for MS Windows (console) Intel 80386 32-bit