コマンドラインからレビューを作成する

このページの内容

お困りですか?

アトラシアン コミュニティをご利用ください。

コミュニティに質問

You can use the Review CLI tool to create reviews in Crucible, for patches and commits, directly from your terminal. It takes the uncommitted changes in your workspace and creates a review for them in Crucible. The Review CLI tool may be especially useful if:

  • you often create pre-commit reviews
  • you want to submit a diff from an external tool for review

You can use the tool on Windows, Linux and Mac OS X, for repositories that are managed in:

  • Subversion
  • perforce
  • Git
  • Mercurial
  • CVS

The tool supports Crucible 3.0, and later versions. Python 2.7 must be installed on your local machine (Python 3 is not supported).

You can use the tool to create new reviews, and to update existing reviews with new patches.

既知の制限事項
  • The CLI tool does not yet allow you to create a review for an existing commit.
  • The CLI tool takes all the files that have been modified, added or removed in the working copy and submits those for review. It doesn't support choosing only files associated with a specific changeset.
  • You can only use the CLI tool to create reviews in projects for which you already have review create permission.

Installing the Review CLI tool

Download the Review CLI tool from either of the following locations in Crucible:

  • When creating a review, click Pre-commit in the 'Add Content to Review' dialog, then click Download:


     
  • Choose Profile settings from your user menu, and then Tools. Click Download:


     

The script comes pre-configured for the user for the given SCM server.

Copy the script to a location somewhere in your system path, for greatest ease of use.

python

Python 2.7 is required.

Linux

Python 2.7 should come with your distribution. If not, or if 2.7 isn’t installed, you will need to install the appropriate package. Please refer to your package manager for the appropriate version.

Windows

You can install Python by running the latest Python 2.7 Installer for Windows.

MacOS X

Python 2.7 should come with any modern version of MacOS X. You can also download Python 2.7 from http://www.python.org/getit/.

Using the Review CLI tool

To create a review using the Review CLI tool, run the script from a directory under SCM control that has local, uncommitted changes. The changes will be submitted to Crucible for review.

Call the script with the following command:

crucible.py <arguments list>

The Review CLI syntax is consistent with that for Crucible and Fisheye smart commits. Examples of syntax usage are provided in the following table:

操作
構文
結果
View usage helpcrucible.py --helpDisplays the help with descriptions of all the valid commandline arguments
Create a pre-commit review interactivelycrucible.pyGets the patch from the current SCM, prompts for the project and review title, and creates a draft review
Create a pre-commit review with a given project and titlecrucible.py -m "the review title" CR-FEGets the patch from the current SCM, creates a draft review in the CR-FE project with the given title
Create a pre-commit review with moderator and reviewerscrucible.py CR-FE @matt @joe --moderator tedGets the patch from the current SCM, creates a review in the CR-FE project, adds matt and joe as the reviewers and ted as a moderator, starts the review
Create a pre-commit review anchored to a specific repositorycrucible.py -r repo1Creates a pre-commit review interactively, trying to anchor the patch to the given repository
Add a patch to a reviewcrucible.py CR-FE-1204Gets the patch from the current SCM and adds it to the review CR-FE-1204
Create a review from diff outputhg diff --git | crucible.pyCreates a pre-commit review interactively, taking the output of the first command as a patch
Create a review from a diff filecrucible.py -f file.diffCreates a pre-commit review interactively, taking the output of the patch from the given file
最終更新日: 2019 年 2 月 14 日

この内容はお役に立ちましたか?

はい
いいえ
この記事についてのフィードバックを送信する
Powered by Confluence and Scroll Viewport.