a set of client tools to use with Review Board.
Questions tagged [rbtools]
10 questions
3
votes
1 answer
ERROR: The current directory does not contain a checkout from a supported source code repository
I am getting the below error while running command rbt post .
ERROR: The current directory does not contain a checkout from a supported source code repository.
I have correctly setup P4 client.
If there any leads on how to…

Nikinsha
- 31
- 1
- 2
1
vote
0 answers
getting html page when trying to access reviewboard diff using rest api
Here is a code review on reviewboard and I was trying to access the diff via rest api.
curl https://reviews.reviewboard.org/api/3184/diff/7/ -H "Accept: application/json"
but this is always giving me a html page.
I tried this and
curl --insecure…

Chang Zhao
- 631
- 2
- 8
- 24
1
vote
1 answer
Review Board - rbt post - Error validating diff - fatal: Not a git repository: 'None'
I have installed Review Board on Ubuntu. Remote repositories are pushed/stored on the same server. I have added repository with remote path/full URL in the admin panel. When I try to make "rbt post" from Windows cmd or directly post diff file into…

Justinas Jakavonis
- 8,220
- 10
- 69
- 114
1
vote
2 answers
Review board - post commit review from separate revisions
I am doing a proof of concept of review-board for a team of around 20 developers. We currently send code reviews using emails and manual screenshot of post commit changes (SVN) and I hope we can move away from that.
The challenge that I am facing is…

xav
- 812
- 8
- 9
1
vote
1 answer
git default branch is always pointing to master even after changing config
I dont have a branch called master in my git repository but when i do post-review command (rbtools addon for git) , its pointing to master branch though i point mainBranch…

logan
- 7,946
- 36
- 114
- 185
1
vote
1 answer
rbt tool - aborts due to missing http authorization
I'm using Mercurial and somehow rbt tools fail to run rbt diff on the repository because of missing http authorization
below is the error I get
Failed to execute command: [u'hg', u'-q', u'outgoing', u'--template',…

kaur
- 567
- 1
- 7
- 24
0
votes
1 answer
How do I exclude a directory when raising a review using rbtools?
I see this option in rbtools documentation, I need an example for its usage when excluding a directory and its contents.
-X , --exclude
Excludes all files that match the given pattern from the diff. This can be used multiple times to specify…

mesh
- 849
- 9
- 16
0
votes
1 answer
Post review request of committed files in CVS to Review Board
I am trying to post review request of files i committed in CVS, currently i have two file with their revisions. I have tried almost all possible combinations mentioned @…

Waqar Ali Khan
- 11
- 7
0
votes
1 answer
Reviewboard RBTools: get files that have changed from different diff
Let's say I have a review request which has 10 files
From diff 1 and 2, I've only changed 1 file
client = RBClient()
root = client.get_root()
files = root.get_files(review_request_id=1, diff_revision=1)
files2 = root.get_files(review_request_id=1,…

ealeon
- 12,074
- 24
- 92
- 173
0
votes
1 answer
Python RBTools: get reviewers
I have a RB root:
api_client = RBClient(...)
root = api_client.get_root()
I can get files associated with a review request via:
files = root.get_files(review_request_id=1, diff_revision=1)
I would like to get information about Reviewers(group,…

ealeon
- 12,074
- 24
- 92
- 173