コマンド概要
vibeはGit Worktreeを管理するためのシンプルなコマンドセットを提供します。
コマンド一覧
Section titled “コマンド一覧”| コマンド | 説明 |
|---|---|
vibe start <branch> [--base <ref>] |
新規または既存ブランチでWorktreeを作成 |
vibe scratch |
scratch/ で始まる自動命名 Worktree を作成 |
vibe jump <branch> |
ブランチ名で既存の Worktree にジャンプ |
vibe rename <new-name> |
現在の Worktree のブランチとディレクトリをリネーム |
vibe clean |
現在のWorktreeを削除してメインに戻る |
vibe home |
Worktreeを削除せずにメインに戻る |
vibe trust |
設定ファイルを信頼登録 |
vibe untrust |
設定ファイルの信頼を解除 |
vibe config |
現在の設定を表示 |
vibe upgrade |
アップデートを確認しアップグレード方法表示 |
vibe shell-setup |
シェルラッパー関数(および任意で補完)を出力 |
クイックリファレンス
Section titled “クイックリファレンス”# 新機能用のWorktreeを作成vibe start feat/new-feature
# 既存ブランチを使用vibe start feat/existing-branch
# 特定のブランチをベースに作成vibe start feat/new-feature --base main
# 作業完了後にクリーンアップvibe clean
# Worktreeを削除せずにメインに戻るvibe home
# 設定ファイルを信頼登録vibe trust
# 現在の設定を表示vibe config
# アップデートを確認vibe upgradeグローバルオプション
Section titled “グローバルオプション”以下のオプションはほとんどのコマンドで使用できます:
| オプション | 説明 |
|---|---|
-h, --help |
ヘルプメッセージを表示 |
-v, --version |
バージョン情報を表示 |
-V, --verbose |
詳細な出力を表示 |
-q, --quiet |
不要な出力を抑制 |