1.Windows安装Git
较全的下载地址,国外网站下载太慢,尽量使用国内网站的下载地址 :
https://github.com/waylau/git-for-win
设置环境变量 :
安装完成后,如果cmd命令行中git指令无效,打开安装目录,复制安装路径中的bin路径,比如 :
G:\Program Files\Git\bin
将该路径添加到环境变量Path路径(具体百度 : Windows添加环境变量)
2.生成本地ssh
可使用Git Bash进行操作,具体操作参考地址 : http://www.cnblogs.com/zi-xing/p/5767307.html
3.Git添加ssh
登录自己的Github账号,进入设置页面,参照下图添加ssh :
4.Pycharm clone 托管项目代码
- 打开pycharm,以此点击File -- Settings -- Version Control -- Git
- 添加Git/bin下面的git.exe,点击Test(测试成功,显示git version)
-
点击File -- Close Project进入到初始界面,按下图指示点击
- 在URL处粘贴托管的地址即可clone代码
URL在你的git/settings/repositories具体某一个项目中
5.提交代码到Gerrit
- 使用git bash安装git-review:
pip install git-review
- pyChram提交commit后在当前目录执行
git review
- 若发生无法找到repository,参见https://stackoverflow.com/questions/33910364/issue-with-cloning-git-repository
即在.ssh/config
中添加或生成config文件为:
Host xxxx.yyyy.com
KexAlgorithms +diffie-hellman-group1-sha1
Port portNumber
User userName-yourDomain-com