Skip to content

Commands Overview

vibe provides a simple set of commands for managing Git Worktrees.

CommandDescription
vibe start <branch> [--base <ref>]Create a worktree with a new or existing branch
vibe cleanDelete current worktree and return to main
vibe homeReturn to main worktree without removing current
vibe trustTrust configuration files
vibe untrustUntrust configuration files
vibe configShow current configuration
vibe upgradeCheck for updates and show upgrade instructions
Terminal window
# Create a worktree for a new feature
vibe start feat/new-feature
# Use an existing branch
vibe start feat/existing-branch
# Create from a specific base branch
vibe start feat/new-feature --base main
# Clean up when done
vibe clean
# Return to main worktree without removing current
vibe home
# Trust configuration files
vibe trust
# Show current config
vibe config
# Check for updates
vibe upgrade

These options are available for most commands:

OptionDescription
-h, --helpShow help message
-v, --versionShow version information
-V, --verboseShow detailed output
-q, --quietSuppress non-essential output
  • start - Create worktrees
  • clean - Remove worktrees
  • home - Navigate to main worktree
  • trust - Manage configuration trust
  • config - View configuration
  • upgrade - Check for updates