web-dev-qa-db-ja.com

bzrlp-proposeとbzrlp-propose-mergeの違いは何ですか?

違いは何ですか bzr lp-proposeおよびbzr lp-propose-merge

マージを提案したいブランチを提供する必要がありますか、それとも私のためにそれを想定していますか?

2
Akiva

bzr lp-proposebzr lp-propose-mergeは同じコマンドです(lp-proposelp-propose-mergeのエイリアスです):

$ bzr lp-propose --help
Purpose: Propose merging a branch on Launchpad.
Usage:   bzr lp-propose-merge [SUBMIT_BRANCH]

Options:
  --staging             Propose the merge on staging.
  -v, --verbose         Display more information.
  -R ARG, --review=ARG  Requested reviewer and optional type.
  --fixes=ARG           The bug this proposal fixes.
  -q, --quiet           Only display errors and warnings.
  --usage               Show usage message and options.
  -m ARG, --message=ARG
                        Commit message.
  --approve             Mark the proposal as approved immediately, setting the
                        approved revision to tip.
  -h, --help            Show help message.

Description:
  This will open your usual editor to provide the initial comment.  When it
  has created the proposal, it will open it in your default web browser.

  The branch will be proposed to merge into SUBMIT_BRANCH.  If SUBMIT_BRANCH
  is not supplied, the remembered submit branch will be used.  If no submit
  branch is remembered, the development focus will be used.

  By default, the SUBMIT_BRANCH's review team will be requested to review
  the merge proposal.  This can be overriden by specifying --review (-R).
  The parameter the launchpad account name of the desired reviewer.  This
  may optionally be followed by '=' and the review type.  For example:

    bzr lp-propose-merge --review jrandom --review review-team=qa

  This will propose a merge,  request "jrandom" to perform a review of
  unspecified type, and request "review-team" to perform a "qa" review.

Aliases:  lp-submit, lp-propose
From:     plugin "launchpad"
2
Sylvain Pineau