Click here to Skip to main content
15,884,836 members
Articles / Operating Systems / Windows

Creating CodeCollaborator Reviews using Command Line

Rate me:
Please Sign up or sign in to vote.
0.00/5 (No votes)
12 Apr 2013CPOL1 min read 11.8K  
How to create CodeCollaborator reviews using command line

This article appears in the Third Party Products and Tools section. Articles in this section are for the members only and must not be used to promote or advertise products in any way, shape or form. Please report any spam or advertising.

Some months ago, I started using CodeCollaborator to create code reviews and ensure our developments have the desired quality.

We are at the end of our development sprint, so I tried to create some code reviews using the CodeCollaborator GUI with no success. Apparently, one of the latest Java VM updates "broke" my client; actually because we are using an old version of CodeCollaborator client (v 4) which cannot work under the latest versions of Java.

So if you run into the same problem, or just want to create your reviews using the command line, follow the next steps described below. (Disclaimer: This was only tested on Windows and using SVN as source control, since that's our current development environment.)

  1. Open the command line prompt
  2. Go to your working copy folder, something like this: cd "C:\Folder\Folder\MyProjectWorkingCopyRoot"
  3. Login into your CodeCollaboration Server
    PHP
    ccolab login  [ServerUrl] [UserName] [Password]

    You will get something like this:

    PHP
    Connecting to Code Collaborator Server https://[your.server.url]/
    Connected as: [Your name and username]
    
    New configuration worked - saving configuration settings
    Configuration key 'url' saved.
    Configuration key 'user' saved.
    Configuration key 'password' saved.
    Configuration key 'server-proxy-host' cleared.
    Configuration key 'server-proxy-port' cleared.
  4. You can upload specific files, changelists, etc. In my case, I needed to upload all the changes made on an specific revision, so I needed to pass a SVN diff as a parameter.
    PHP
    ccollab addsvndiffs new -r 27183:27190

    If you look, I added the parameter "new" which means I'm creating a new review (and will be named "Untitled Review"); you can also pass the review-id if you want to add files to an existing review.

With this, you can easily add files when creating or updating any CodeCollaborator review. For more information, go to the CodeCollaboration command line reference.

This article was originally posted at http://pollirrata.blogspot.com/feeds/posts/default

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer e-nnovare
Mexico Mexico
Jorge is an enthusiast web developer who love to learn something new every day.

Comments and Discussions

 
-- There are no messages in this forum --