CM/Github(2)
-
sourceTree 새로 설치 한 후 password를 지속적으로 묻는 경우
github > SSH and GPG keys를 설정해줬는데도 자꾸 패스워드를 물었다... cmd창에서 git config --global credential.helper osxkeychain 이 명령어를 통해 해결 하였다. 굳!
2019.06.04 -
github 오류 - Permission denied (publickey)
상황설명 이클립스에서 하둡소스를 코딩하고 github에 명령어로 소스를 올려보려고 하였다..하지만 문제에 봉착!! 오류는 아래와 같았다. 오류내역 $ git push -u hadoopOrigin masterPermission denied (publickey). fatal: Could not read from remote repository. 해결방법 1) 아래의 사이트에서 확인해보니 ssh문제였다.. https://help.github.com/articles/error-permission-denied-publickey 2) ssh를 생성해자~ssh-keygen~! gogo~! ssh-keygen -t rsa -C "git login id(e-mail address)" ssh-keygen -t rsa -C..
2014.09.17