2012-10-19 7 views
1

은 자식 흐름을자식이

실행 설치하려고 흐름을 설치할 수 없습니다 : 또한 실행

 
Updating /Library/Caches/Homebrew/git-flow--git 
error: could not lock config file .git/config: Permission denied 
Error: Failure while executing: 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 | sudo sh 

알았어 :

 
brew install git-flow 

알았어

 
Submodule path 'shFlags': checked out '2fb06af13de884e9680f14a00c82e52a67c867f1' 
install: /usr/local/bin/git-flow: No such file or directory 
install: /usr/local/bin/git-flow-init: No such file or directory 
install: /usr/local/bin/git-flow-feature: No such file or directory 
install: /usr/local/bin/git-flow-hotfix: No such file or directory 
install: /usr/local/bin/git-flow-release: No such file or directory 
install: /usr/local/bin/git-flow-support: No such file or directory 
install: /usr/local/bin/git-flow-version: No such file or directory 
install: /usr/local/bin/gitflow-common: No such file or directory 
install: /usr/local/bin/gitflow-shFlags: No such file or directory 
+0

계속 문제가 있습니까? (이전에 GitHub에 DDoS가있었습니다) – VonC

답변

3

SSH 키에 몇 가지 문제가 있다고합니다. brew 명령을 사용하기 때문에 Macintosh를 사용한다고 가정하는 것이 안전하다고 생각합니다.

그래서 여기 어떻게 수정하겠습니까.

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

기본값으로 설정하려면 다음을 비워 둡니다. 그리고 당신은 여기 GitHub의에 SSH 키를 추가하는 방법에 대한 GitHub의에 또한 link의 암호

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 [email protected] 

을 원하지 않는 경우도 빈 암호를 둡니다.

관련 문제