I want to post an SVN diff to the review board; the diff is generated between the branch HEAD and the base tag.
I used this command to generate the diff file :
svn diff https:/path/to/branch/head https:/path/to/tag
note that
i tried to use
rbt diff revision1:revision2
command to generate the diff. I have a problem that review board only accepts revision range within the branch commits only (not accepting revision from tags).i tried to diff using the
svn diff
command then upload the file usingrbt post --diff-filename
but the command returned with an error requiring a base directory; i added the base dir to to be the root usingrbt post --basedir https:/path/to/root
; the review boards accept but shows the diff on the web page like a diff betweenhttps:/path/to/root/branches/featureName/path/to/changed/files
andhttps:/path/to/root/path/to/changed/files
without showing that the diff is between branch and a tag likehttps:/path/to/root/tag/path/to/changed/files
.
is there any way to do such job ?