LoginSignup
1
1

More than 5 years have passed since last update.

bazaarのコマンド

Last updated at Posted at 2015-01-04

bazzarでよく使うコマンドを備忘録代わりにまとめてみました。

■共用リポジトリの生成

$ bzr init-repo --no-trees (リモートリポジトリのパス)

■ローカルリポジトリの生成

$ bzr init

■ファイルを作業ツリーに追加

$ bzr add 

■作業ツリーの状態を参照

$ bzr status

■ファイルをローカルリポジトリに保存

$ bzr commit -m "コミットメッセージ"

■ファイルをリモートリポジトリに保存

$ bar push (ブランチ名)

■修正した差分を見る

$ bzr diff -c (リビジョン番号)

(参考)
http://doc.bazaar.canonical.com/bzr.2.1/ja/index.html

1
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
1