windows中:git 使用RBTools工具 review

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了windows中:git 使用RBTools工具 review相关的知识,希望对你有一定的参考价值。

适用于windows:

1.下载安装RBTools,自带python2.7:

下载地址:https://downloads.reviewboard.org/releases/RBTools/0.7 选择exe文件

安装完以后路径:C:\Program Files (x86)\RBTools

2.配置环境变量:rbt和python:
C:\Program Files (x86)\RBTools\Python27
C:\Program Files (x86)\RBTools\bin
 
3.编码问题:
不添加下述文件,会报错编码
\RBTools\Python27\Lib\site-packages目录下新加文件sitecustomize.py, 内容如下:

#file name:  sitecustomize.py

import sys  

sys.setdefaultencoding(‘utf-8‘)

 

但是设置utf-8会报错,改为gb2312,可以执行rbt命令,但是提交的message是中文的话会乱码,提交的代码不会乱码。

 

4.提交
 
5.review语句:文档:https://www.reviewboard.org/docs/rbtools/0.6/rbt/commands/post/
rbt post --username=*** --password=*** --tracking-branch=*** --server  http://*** --repository-url ***
 

以上是关于windows中:git 使用RBTools工具 review的主要内容,如果未能解决你的问题,请参考以下文章

windows中使用Git工具连接GitHub(配置篇)

推荐用于 Windows 的 Git 工具 [关闭]

在 Windows 上使用 Meld 的 Git 合并工具

git版本控制工具的使用

在 PyCharm 中嵌入 Git bash 作为外部工具,并在 PyCharm 窗口(windows xp)中使用它

使用Windows下的git工具往github上传代码 踩坑记录