-git bash를 설치하고 실행한다.


-유저를 등록한다

git config --global user.name "John Doe"

$ git config --global user.email johndoe@example.com


-키를 만든다

ssh-keygen -t rsa


-공개키를 보인다

cat ~/.ssh/id_rsa.pub


-키를 복사해서 Bitbucket의 설정 화면에서 입력한다


-ssh-agent가 잘 안되면 git_bash에서는 다음과 같이 입력

eval $(ssh-agent -s)

http://stackoverflow.com/questions/24154816/git-bash-could-not-open-a-connection-to-your-authentication-agent


-다음을 참고해서 푸쉬한다

https://confluence.atlassian.com/bitbucket/create-a-repository-for-your-existing-files-800695576.html





Posted by 타다키치
,