1

尝试安装 git flow

跑:

冲泡安装 git 流

拿到:

更新 /Library/Caches/Homebrew/git-flow--git
错误:无法锁定配置文件 .git/config:权限被拒绝
错误:执行失败:git config remote.origin.url https://github.com/nvie/gitflow.git

同时运行:

wget --no-check-certificate -q -O - https://github.com/nvie/gitflow/raw/develop/contrib/gitflow-installer.sh | 须藤

拿到:

子模块路径“shFlags”:签出“2fb06af13de884e9680f14a00c82e52a67c867f1”
安装:/usr/local/bin/git-flow:没有这样的文件或目录
安装:/usr/local/bin/git-flow-init:没有这样的文件或目录
安装:/usr/local/bin/git-flow-feature:没有这样的文件或目录
安装:/usr/local/bin/git-flow-hotfix:没有这样的文件或目录
安装:/usr/local/bin/git-flow-release:没有这样的文件或目录
安装:/usr/local/bin/git-flow-support:没有这样的文件或目录
安装:/usr/local/bin/git-flow-version:没有这样的文件或目录
安装:/usr/local/bin/gitflow-common:没有这样的文件或目录
安装:/usr/local/bin/gitflow-shFlags:没有这样的文件或目录
4

1 回答 1

3

我会说你的 SSH 密钥有一些问题。我认为可以安全地假设您使用 Macintosh 作为brew命令。

所以这就是我将如何解决这个问题。

$ ssh-keygen -t dsa
Generating public/private dsa key pair.

如果您希望将其设为默认值,请将以下内容留空。如果您不想要密码,请将密码也留空

Enter file in which to save the key (/Users/user/.ssh/id_dsa): [id_dsa or empty] 
Enter passphrase (empty for no password):

Enter same passphrase again:
Your identification has been saved in id_dsa.
Your public key has been saved in id_dsa.pub.
The key fingerprint is:
16:8e:e8:f2:1d:c9:b9:cf:43:9a:b3:3c:c1:1f:95:93 user@localhost

这里还有一个关于将 ssh 密钥添加到 github 的 GitHub链接。

于 2012-10-19T11:45:12.797 回答