Re: Exclude in .reviewboardrc

2016-12-20 Thread Jack Andy
Hi barret, thanks for your reply! After I use "rbt post --debug ..." parameter, then I get an error: "svn: E200012: 'diff' returned 2" On Tue, Dec 13, 2016 at 4:17 AM, Barret Rennie wrote: > Hi Jack, > > Can you please run rbt post --debug and include that with your

Re: Exclude in .reviewboardrc

2016-12-12 Thread Barret Rennie
Hi Jack, Can you please run rbt post --debug and include that with your entire command line (rbt post --debug -X ...)? If you use EXCLUDE_PATTERNS, please include those as well. Regards, Barret > On Dec 11, 2016, at 9:34 AM, Jack Andy wrote: > > Hi Barret, > > I can

Re: Exclude in .reviewboardrc

2016-12-11 Thread Jack Andy
Hi Barret, I can exclude some certain directories and files by using your method, generally I exclude some .docx binary files. but In one svn repository, it doesn't work for this, and other repos work fine, and these repos are in the same linux server. when it doesn't work, the error is:

Re: Exclude in .reviewboardrc

2015-05-05 Thread Jeff Buzzell
Barret, This works for me. Thank you for your help. EXCLUDE_PATTERNS = [ r'*\AssemblyInfo.cs', r'*\Controllers\*', r'*\Test\*' ] On Monday, May 4, 2015 at 3:53:41 PM UTC-6, Barret Rennie wrote: Hi there Jeff, When using exclude patterns in your .reviewboardrc file, it takes a

Re: Exclude in .reviewboardrc

2015-05-04 Thread Jeff Buzzell
Could you please elaborate on the syntax for patterns when using .reviewboardrc EXCLUDE_PATTERNS ? I am able to use the rbt parameters to exclude a single pattern at the Windows command line rbt post --exclude *\AssemblyInfo.cs this successfully excludes all AssemblyInfo.cs files found

Re: Exclude in .reviewboardrc

2015-05-04 Thread Barret Rennie
Hi there Jeff, When using exclude patterns in your .reviewboardrc file, it takes a list of python strings. As such you have to make sure to either escape your strings correctly or use raw strings. To use your example, it should be: EXCLUDE_PATTERNS = [ r’*\AssemblyInfo.cs’ ] Let me know

Exclude in .reviewboardrc

2014-12-28 Thread anoop kc
Hi, Could you please advise me on adding an exclude list to the .reviewboardrc file -- Get the Review Board Power Pack at http://www.reviewboard.org/powerpack/ --- Sign up for Review Board hosting at RBCommons: https://rbcommons.com/ --- Happy user? Let us know at

Re: Exclude in .reviewboardrc

2014-12-28 Thread David Trowbridge
See https://www.reviewboard.org/docs/rbtools/dev/rbt/commands/post/#cmdoption-rbt-post-X You would set EXCLUDE_PATTERNS to a list of patterns. Note that this is only available in git master (which will ship as 0.7) -David On Sun, Dec 28, 2014 at 8:37 AM, anoop kc an...@baabte.com wrote: Hi,