Windows中安装gitreview

1、在windows上安装git客户端    

 1.1下载git客户端 

1.2 在windows上安装git客户端 

2、在windows上安装python    

注 安装时不要忘记在环境变量Path添加Python的路径,需要添加Python路径以及Pyrhon下Scripts的路径,否则会遇到 gir review is not a command的错误

3、在windows上安装git-review  

3.1 下载git-review    下载地址为:https://pypi.python.org/pypi/git-review/    

3.2  若为内网安装,git review  可以手动替换 site-packages目录下的内容

3.3 安装git-review,解决下载的tar.gz包,并执行命令 pyhon setup.py install

4、git config配置

  git-review安装完成后,在MINGW64中执行如下命令以对git config进行配置。

git config --global user.name “${user_name}”# gerrit中相应的用户名

git config --global user.email “${user_email}” # 用户对应的邮箱地址,一般为[email protected]

git config --global core.editor vim

git config --global merge.tool vimdiff

git config --global gitreview.username “${user_name}”# gerrit中相应的用户名,一般与user.name一致

查看 git config中参数的命令为 git config --global -l 查看用户配置

5、公钥配置

使用ssh-keygen.exe在windows上生成公钥和私钥(存放位置一般为/c/Users/xxxxxx/.ssh/),可以一路enter

 把公钥的内容拷贝到gerrit的Settings->SSH Public Keys中

你可能感兴趣的:(Windows中安装gitreview)