1. 首先登錄gerrit 註冊(激活)本身的帳號。shell
2. 生成SSH KEY。 run ssh-keygen -t dsa -b 1024 。 提示
Enter file in which to save the key: 輸入任意一文件名(例如id_dsa)。 提示Enter file in which to save the key, 連續輸入兩次回車。 ls /home 或者 /.ssh 。 能夠發現倆文件。 id_dsa 和 id_dsa.pub. 前者是密鑰,後者是公鑰.
3. 添加public key到gerrit。 打開id_isa.pub, 複製內容。進入 gerrit->settings->SSH Publick key->add key, 粘貼公鑰內容。點擊add。
4. 修改 id_dsa id_dsa.pub .ssh 的權限. chmod 700
5. 嘗試 ssh -p 29418 @gerrit......com. 若是看到 下面文字表示成功。
Welcome to Gerrit Code Review **
Hi xxx, you have successfully connected over SSH.
Unfortunately, interactive shells are disabled.
To clone a hosted Git repository, use:bash
可能遇到的問題。
1. 提示
could not create directory .ssh... 緣由多是你的cygwin 環境沒有初始化。 從開始菜單打開cygwin, 會看到會有一些初始化的工做。
2. 若是遇到Permission denied (publickey). 那多是你沒有添加密鑰到ssh-agent. 嘗試ssh-add id_dsa. 在add的時候若是遇到Could not open a connection to your authentication agent. 嘗試ssh-agent bash. 而後再 ssh-add. add 成功後再run ssh -p 29418 @gerrit......com 應該就能夠看到 welcome的提示了。