A BubbleTea-based Terminal User Interface designed for efficient Git worktree management. Visualise the repository's status, oversee branches, and navigate between worktrees with ease.
- Worktree Management: Create, rename, delete, absorb, and prune merged worktrees.
- Cherry-pick Commits: Copy commits from one worktree to another via an interactive worktree picker.
- Commit Log Details: Log pane shows author initials alongside commit subjects.
- Base Selection: Select a base branch or commit from a list, or enter a reference when creating a worktree.
- Forge Integration: Fetch and display associated Pull Request (GitHub) or Merge Request (GitLab) status, including CI check results (via
ghorglabCLI). - Create from PR/MR: Create worktrees directly from open pull or merge requests, GitHub (or GitHub enterprise) or GitLab supported.
- Create from Issue: Create worktrees from GitHub/GitLab issues with automatic branch name generation based on issue title.
- Status at a Glance: View dirty state, ahead/behind counts, and divergence from main.
- Tmux Integration: Create and manage tmux sessions per worktree with multi-window support.
- Zellij: Create and manage zellij sessions per worktree with multi-tab support.
- Diff Viewer: View diff with optional delta support.
- Repo Automation:
.wtinit/terminate commands with TOFU security. - LazyGit Integration: Launch lazygit directly for the currently selected worktree.
See other Screenshots below
- Go: 1.25+ (for building from source)
- Git: 2.31+ (recommended)
- Forge CLI: GitHub CLI (
gh) or GitLab CLI (glab) for repo resolution and PR/MR status.
Optional:
- delta: For syntax-highlighted diffs. (highly recommended)
- lazygit: For full TUI git control.
- tmux: For TMUX integration support.
- zellij: For zellij integration support.
Clone the repository and build:
git clone https://github.com/chmouel/lazyworktree.git
cd lazyworktree
go build -o lazyworktree ./cmd/lazyworktreeInstall to your PATH:
go install ./cmd/lazyworktreeOr build and run directly:
go run ./cmd/lazyworktree/main.goTo override the default worktree root, use the following:
lazyworktree --worktree-dir ~/worktreesPre-built binaries for various platforms are provided in the Releases section.
brew tap chmouel/lazyworktree https://github.com/chmouel/lazyworktree
brew install lazyworktree --caskFor shell integration with the "jump" functionality, download and source the helper shell functions:
# Download the helper functions
mkdir -p ~/.shell/functions
curl -sL https://raw.githubusercontent.com/chmouel/lazyworktree/refs/heads/main/shell/functions.shell -o ~/.shell/functions/lazyworktree.shell
# Review and customize the functions if needed
# nano ~/.shell/functions/lazyworktree.shell
# Add to .zshrc
source ~/.shell/functions/lazyworktree.shell
# Create an alias for a specific repository
jt() { worktree_jump ~/path/to/your/main/repo "$@"; }yay -S lazyworktree-binTo enable the "jump" functionality, which changes your shell's current directory upon exit, append the helper functions from shell/functions.shell to your .zshrc. The helper uses --output-selection to write the selected path to a temporary file.
Example configuration:
# Add to .zshrc
source /path/to/lazyworktree/shell/functions.shell
# Create an alias for a specific repository
# worktree storage key is derived from the origin remote (e.g. github.com:owner/repo)
# and falls back to the directory basename when no remote is set.
jt() { worktree_jump ~/path/to/your/main/repo "$@"; }You can now run jt to open the Terminal User Interface, select a worktree, and upon pressing Enter, your shell will change directory to that location.
To jump directly to a worktree by name with shell completion enabled, use the following:
jt() { worktree_jump ~/path/to/your/main/repo "$@"; }
_jt() { _worktree_jump ~/path/to/your/main/repo; }
compdef _jt jtShould you require a shortcut to the last-selected worktree, use the built-in worktree_go_last helper, which reads the .last-selected file:
alias pl='worktree_go_last ~/path/to/your/main/repo'Generate completion scripts for bash, zsh, or fish:
# Bash
eval "$(lazyworktree --completion bash)"
# Zsh
eval "$(lazyworktree --completion zsh)"
# Fish
lazyworktree --completion fish > ~/.config/fish/completions/lazyworktree.fishPackage manager installations (deb, rpm, AUR) include completions automatically.
You may create a .wt file in your main repository to define custom commands that execute when creating or removing a worktree. This format is inspired by wt.
init_commands:
- link_topsymlinks
- cp $MAIN_WORKTREE_PATH/.env $WORKTREE_PATH/.env
- npm install
- code .
terminate_commands:
- echo "Cleaning up $WORKTREE_NAME"The following environment variables are available to your commands:
WORKTREE_BRANCH: Name of the git branch.MAIN_WORKTREE_PATH: Path to the main repository.WORKTREE_PATH: Path to the new worktree being created or removed.WORKTREE_NAME: Name of the worktree (directory name).
Since .wt files permit the execution of arbitrary commands found within a repository, lazyworktree implements a Trust on First Use security model to prevent malicious repositories from automatically executing code on your system.
- First Run: Upon encountering a new or modified
.wtfile,lazyworktreewill pause and display the commands it intends to execute. You may select Trust (run and save), Block (skip for now), or Cancel the operation. - Trusted: Once trusted, commands run silently in the background until the
.wtfile changes again. - Persistence: Trusted file hashes are stored in
~/.local/share/lazyworktree/trusted.json.
This behaviour may be configured in config.yaml via the trust_mode setting:
tofu(Default): Prompts for confirmation on new or changed files. Secure and usable.never: Never runs commands from.wtfiles. Safest for untrusted environments.always: Always runs commands without prompting. Useful for personal/internal environments but risky.
link_topsymlinks: A built-in automation command (not a shell command) that executes without TOFU prompts once the.wtfile is trusted. It performs the following:- Symlinks all untracked and ignored files from the root of the main worktree to the new worktree (excluding subdirectories).
- Symlinks common editor configurations (
.vscode,.idea,.cursor,.claude). - Ensures a
tmp/directory exists in the new worktree. - Automatically runs
direnv allowif a.envrcfile is present.
You may define custom keybindings in your ~/.config/lazyworktree/config.yaml to execute commands within the selected worktree. Custom commands execute interactively (the Terminal User Interface suspends, much like when launching lazygit) and appear in the command palette. Should you set show_output, lazyworktree pipes the command output through the configured pager.
By default, t opens a tmux session with a single shell window and Z opens a zellij session with the same layout fields. You may override these by defining custom_commands.t or custom_commands.Z. When attach is true, lazyworktree attaches to the session immediately; when false, it displays an information modal with instructions for manual attachment.
Add a custom_commands section to your config:
custom_commands:
e:
command: nvim
description: Editor
show_help: true
s:
command: zsh
description: Shell
show_help: true
T: # Run tests and wait for keypress
command: make test
description: Run tests
show_help: false
wait: true
o: # Show output in the pager
command: git status -sb
description: Status
show_help: true
show_output: true
a: # Open CLaude CLI in the selected workspace in a new kitty tab
command: "kitten @ launch --type tab --cwd $WORKTREE_PATH -- claude"
description: Open Claude
show_help: true
t: # Open a tmux session with multiple windows
description: Tmux
show_help: true
tmux:
session_name: "${REPO_NAME}_wt_$WORKTREE_NAME"
attach: true
on_exists: switch
windows:
- name: claude
command: claude
- name: shell
command: zsh
- name: lazygit
command: lazygit
Z: # Open a zellij session with multiple tabs
description: Zellij
show_help: true
zellij:
session_name: "${REPO_NAME}_wt_$WORKTREE_NAME"
attach: true
on_exists: switch
windows:
- name: claude
command: claude
- name: shell
command: zsh
- name: lazygit
command: lazygit| Field | Type | Default | Description |
|---|---|---|---|
command |
string | required | The command to execute |
description |
string | "" |
Description shown in the help screen and command palette |
show_help |
bool | false |
Whether to show this command in the help screen (?) and footer hints |
wait |
bool | false |
Wait for key press after command completes (useful for quick commands like ls or make test) |
show_output |
bool | false |
Run non-interactively and show stdout/stderr in the pager (ignores wait) |
tmux |
object | null |
Configure a tmux session instead of executing a single command |
zellij |
object | null |
Configure a zellij session instead of executing a single command |
| Field | Type | Default | Description |
|---|---|---|---|
session_name |
string | ${REPO_NAME}_wt_$WORKTREE_NAME |
tmux session name (supports env vars) |
attach |
bool | true |
If true, attach/switch immediately; if false, show info modal with attach instructions |
on_exists |
string | switch |
Behavior if session exists: switch, attach, kill, new |
windows |
list | [ { name: "shell" } ] |
Window definitions for the session |
If windows is omitted or empty, lazyworktree creates a single shell window.
| Field | Type | Default | Description |
|---|---|---|---|
name |
string | window-N |
Window name (supports env vars) |
command |
string | "" |
Command to run in the window (empty uses your default shell) |
cwd |
string | $WORKTREE_PATH |
Working directory for the window (supports env vars) |
| Field | Type | Default | Description |
|---|---|---|---|
session_name |
string | ${REPO_NAME}_wt_$WORKTREE_NAME |
zellij session name (supports env vars) |
attach |
bool | true |
If true, attach immediately; if false, show info modal with attach instructions |
on_exists |
string | switch |
Behavior if session exists: switch, attach, kill, new |
windows |
list | [ { name: "shell" } ] |
Tab definitions for the session |
If windows is omitted or empty, lazyworktree creates a single shell tab.
Zellij session names cannot include / or \, so lazyworktree replaces them with -.
| Field | Type | Default | Description |
|---|---|---|---|
name |
string | window-N |
Tab name (supports env vars) |
command |
string | "" |
Command to run in the tab (empty uses your default shell) |
cwd |
string | $WORKTREE_PATH |
Working directory for the tab (supports env vars) |
Custom commands have access to the same environment variables as init/terminate commands:
WORKTREE_BRANCH: Name of the git branchMAIN_WORKTREE_PATH: Path to the main repositoryWORKTREE_PATH: Path to the selected worktreeWORKTREE_NAME: Name of the worktree (directory name)REPO_NAME: Name of the repository (from GitHub/GitLab)
Custom commands support the same key formats as built-in keybindings:
- Single keys:
e,s,t,l, etc. - Modifier combinations:
ctrl+e,ctrl+t,alt+s, etc. - Special keys:
enter,esc,tab,space, etc.
Examples:
custom_commands:
"ctrl+e":
command: nvim
description: Open editor with Ctrl+E
"alt+t":
command: make test
description: Run tests with Alt+T
wait: trueCustom commands take precedence over built-in keys. If you define a custom command with key s, it shall override the built-in sort toggle. This permits you to fully customise your workflow.
| Key | Action |
|---|---|
Enter |
Jump to worktree (exit and cd) |
c |
Create new worktree (from branch, commit, PR/MR, or issue) |
m |
Rename selected worktree |
D |
Delete selected worktree |
d |
View diff in pager (respects pager config) |
A |
Absorb worktree into main |
X |
Prune merged worktrees |
! |
Run arbitrary command in selected worktree (with command history) |
p |
Fetch PR/MR status (also refreshes CI checks) |
o |
Open PR/MR in browser |
ctrl+p, : |
Command palette |
g |
Open LazyGit |
r |
Refresh list |
R |
Fetch all remotes |
f |
Filter focused pane (worktrees, files, commits) |
/ |
Search focused pane (incremental) |
alt+n, alt+p |
Move selection and fill filter input |
β, β |
Move selection (filter active, no fill) |
s |
Cycle sort mode (Path / Last Active / Last Switched) |
Home |
Go to first item in focused pane |
End |
Go to last item in focused pane |
? |
Show help |
1 |
Switch to Worktree pane (or toggle zoom if already focused) |
2 |
Switch to Status pane (or toggle zoom if already focused) |
3 |
Switch to Log pane (or toggle zoom if already focused) |
Tab, ] |
Cycle to next pane |
[ |
Cycle to previous pane |
= |
Toggle zoom for focused pane (full screen) |
Log Pane (when focused on commit log):
| Key | Action |
|---|---|
Enter |
Open commit file tree (browse files changed in commit) |
d |
Show full commit diff in pager |
C |
Cherry-pick commit to another worktree |
j/k |
Navigate commits |
ctrl+j |
Next commit and open file tree |
/ |
Search commit titles (incremental) |
Commit File Tree (when viewing files in a commit):
| Key | Action |
|---|---|
j/k |
Navigate files and directories |
Enter |
Toggle directory collapse/expand, or show file diff |
d |
Show full commit diff in pager |
f |
Filter files by name |
/ |
Search files (incremental) |
n/N |
Next/previous search match |
q, Esc |
Return to commit log |
Status Pane (when focused on status):
The status pane displays changed files in a collapsible tree view, grouped by directory (similar to lazygit). Directories can be expanded/collapsed, files are sorted alphabetically within each directory level.
| Key | Action |
|---|---|
j/k |
Navigate between files and directories |
Enter |
Toggle directory expand/collapse, or show diff for files |
e |
Open selected file in editor |
d |
Show full diff of all files in pager |
s |
Stage/unstage selected file or directory |
D |
Delete selected file or directory (with confirmation) |
c |
Commit staged changes |
C |
Stage all changes and commit |
g |
Open LazyGit |
ctrl+β, ctrl+β |
Jump to previous/next folder |
/ |
Search file/directory names (incremental) |
Filter Mode:
Filter mode applies to the focused pane (worktrees, file names, commit titles).
alt+n,alt+p: Navigate and update filter input with selected itemβ,β,ctrl+j,ctrl+k: Navigate list without changing filter inputEnter: Exit filter mode (filter remains active)Esc,Ctrl+C: Exit filter mode
When a filter is active, the pane title shows a filter indicator with [Esc] Clear hint. Press Esc to clear the filter.
Search Mode:
- Type to jump to the first matching item
n,N: Next / previous matchEnter: Close searchEsc,Ctrl+C: Clear search
Command History (! command):
When running arbitrary commands with !, command history is persisted per repository:
β,β: Navigate through command history (most recent first)- Commands are automatically saved after execution
- History is limited to 100 entries per repository
- Stored in
~/.local/share/lazyworktree/<repo-key>/.command-history.json
Command Palette Actions:
- Create from changes: Create a new worktree from current uncommitted changes in the selected worktree. This stashes all changes (including untracked files), creates a new worktree, and applies the stashed changes to it. Requires a worktree to be selected with uncommitted changes present.
- Click: Select and focus panes or items
- Scroll Wheel: Scroll through lists and content
- Worktree table (left pane)
- Status pane (right top pane)
- Log table (right bottom pane)
Worktrees are expected to be organised under ~/.local/share/worktrees/<repo_name> by default, although the application attempts to resolve locations via gh repo view or glab repo view. Should the repository name not be detectable, lazyworktree falls back to a local local-<hash> key for cache and last-selected storage.
lazyworktree reads ~/.config/lazyworktree/config.yaml (or .yml) for default settings. An example configuration is provided below (also available in config.example.yaml):
worktree_dir: ~/.local/share/worktrees
sort_mode: switched # Options: "path", "active" (commit date), "switched" (last accessed)
auto_fetch_prs: false
show_icons: true
search_auto_select: false
fuzzy_finder_input: false
max_untracked_diffs: 10
max_diff_chars: 200000
theme: "" # Leave empty to auto-detect based on terminal background color
# (defaults to "dracula" for dark, "dracula-light" for light).
# Options: "dracula", "dracula-light", "narna", "clean-light",
# "solarized-dark", "solarized-light", "gruvbox-dark",
# "gruvbox-light", "nord", "monokai", "catppuccin-mocha"
delta_path: delta
pager: "less --use-color --wordwrap -qcR -P 'Press q to exit..'"
editor: nvim
delta_args:
- --syntax-theme
- Dracula
trust_mode: "tofu" # Options: "tofu" (default), "never", "always"
merge_method: "rebase" # Options: "rebase" (default), "merge"
# Branch name generation for issues and PRs
issue_branch_name_template: "issue-{number}-{title}" # Template with {number}, {title} placeholders
pr_branch_name_template: "pr-{number}-{title}" # Template with {number}, {title} placeholders
# AI-powered branch name generation (works for changes, issues, and PRs)
branch_name_script: "" # Script to generate branch names from diff/issue/PR content
init_commands:
- link_topsymlinks
terminate_commands:
- echo "Cleaning up $WORKTREE_NAME"
custom_commands:
t:
command: make test
description: Run tests
show_help: true
wait: true
# Custom worktree creation menu items
custom_create_menus:
- label: "From JIRA ticket"
description: "Create from JIRA issue"
command: "jayrah browse 'SRVKP' --choose"
interactive: true # TUI-based commands need this to suspend lazyworktree
post_command: "git commit --allow-empty -m 'Initial commit for ${WORKTREE_BRANCH}'"
post_interactive: false # Run post-command in background
- label: "From clipboard"
description: "Use clipboard as branch name"
command: "pbpaste"Notes:
--worktree-diroverrides theworktree_dirsetting.themeselects the colour theme. Available themes:dracula,dracula-light,narna,clean-light,catppuccin-latte,rose-pine-dawn,one-light,everforest-light,solarized-dark,solarized-light,gruvbox-dark,gruvbox-light,nord,monokai,catppuccin-mocha. Default: auto-detected (draculafor dark,dracula-lightfor light).init_commandsandterminate_commandsexecute prior to any repository-specific.wtcommands (if present).sort_modecontrols the default sort order:"switched"(last accessed, default),"active"(last commit date), or"path"(alphabetical). The oldsort_by_activeoption is still supported for backwards compatibility.- Set
auto_fetch_prstotrueto fetch PR data upon startup. - Set
show_icons: falseto disable icons. - Set
search_auto_selecttotrueto commence with the filter focused (alternatively, pass--search-auto-select). - Set
fuzzy_finder_inputtotrueto enable fuzzy finder suggestions in input dialogs. When enabled, typing in text input fields displays fuzzy-filtered suggestions from available options. Use arrow keys to navigate suggestions and Enter to select. - Use
max_untracked_diffs: 0to conceal untracked diffs;max_diff_chars: 0disables truncation. - Execute
lazyworktree --show-syntax-themesto display the default delta--syntax-themevalues for each UI theme. - Use
lazyworktree --theme <name>to select a UI theme directly; the supported names correspond to those listed above. delta_argsconfigures arguments passed todelta(defaults follow the UI theme: Dracula βDracula, Dracula-Light βMonokai Extended Light, Narna βOneHalfDark, Clean-Light βGitHub, Catppuccin Latte βCatppuccin Latte, RosΓ© Pine Dawn βGitHub, One Light βOneHalfLight, Everforest Light βGruvbox Light, Solarized Dark βSolarized (dark), Solarized Light βSolarized (light), Gruvbox Dark βGruvbox Dark, Gruvbox Light βGruvbox Light, Nord βNord, Monokai βMonokai Extended, Catppuccin Mocha βCatppuccin Mocha).delta_pathspecifies the path to the delta executable (default:delta). Set to an empty string to disable delta and use plain git diff output.pagerdesignates the pager forshow_outputcommands and the diff viewer (default:$PAGER, fallbackless --use-color --wordwrap -qcR -P 'Press q to exit..', thenmore, thencat). When the pager isless, lazyworktree configuresLESS=andLESSHISTFILE=-to disregard user defaults.editorsets the editor command for the Status paneekey (default: config value, then$EDITOR, thennvim, thenvi).merge_methodcontrols how the "Absorb worktree" action integrates changes into main:rebase(default) rebases the feature branch onto main then fast-forwards;mergecreates a merge commit.branch_name_scriptexecutes a script to generate branch name suggestions when creating worktrees from changes, issues, or PRs. The script receives the git diff (for changes), issue title+body (for issues), or PR title+body (for PRs) on stdin and should output a branch name. Refer to AI-powered branch names below.issue_branch_name_templatedefines the template for issue branch names with placeholders:{number},{title}(default:"issue-{number}-{title}"). Examples:issue-123-fix-bug-in-login,123-fix-bug-in-login,fix/123-fix-bug-in-login.pr_branch_name_templatedefines the template for PR branch names with placeholders:{number},{title}(default:"pr-{number}-{title}"). Examples:pr-123-fix-bug,pr123-fix-bug,123-fix-bug.custom_create_menusadds custom items to the worktree creation menu (ckey). Each entry requires alabelandcommand;descriptionis optional. The workflow: you first select a base branch, then the command runs to generate a branch name. By default, commands run non-interactively with a 30-second timeout and their stdout is captured directly. Setinteractive: truefor TUI-based commands (likejayrah browseorfzf); this suspends lazyworktree, runs the command in the terminal with no timeout, and captures stdout via a temp file. The command output (first line only, whitespace trimmed, case preserved) is used as the suggested branch name. Optionally, specifypost_commandto run a command in the new worktree directory after creation (runs after global/repoinit_commands); non-interactive post-commands have a 30-second timeout, whilstpost_interactive: truesuspends the TUI with no timeout for interactive post-commands. Post-commands have access to environment variables likeWORKTREE_BRANCH,WORKTREE_PATH, etc. If a post-command fails, the error is shown but the worktree is kept.
lazyworktree includes built-in themes:
| Theme | Background | Best For |
|---|---|---|
| dracula | Dark (#282A36) | Dark terminals, vibrant colours, default fallback |
| dracula-light | White (#FFFFFF) | Light terminals, Dracula colours, default light theme |
| narna | Charcoal (#0D1117) | Dark terminals, blue highlights |
| clean-light | White (#FFFFFF) | Light terminals, cyan accent |
| catppuccin-latte | Soft white (#EFF1F5) | Catppuccin Latte light palette |
| rose-pine-dawn | Warm white (#FAF4ED) | RosΓ© Pine Dawn warm palette |
| one-light | Light grey (#FAFAFA) | Atom One Light |
| everforest-light | Beige (#F3EFDA) | Everforest nature light |
| solarized-dark | Deep teal (#002B36) | Classic Solarized dark palette |
| solarized-light | Cream (#FDF6E3) | Classic Solarized light palette |
| gruvbox-dark | Dark grey (#282828) | Gruvbox dark, warm accents |
| gruvbox-light | Sand (#FBF1C7) | Gruvbox light, earthy tones |
| nord | Midnight blue (#2E3440) | Nord calm cyan accents |
| monokai | Olive black (#272822) | Monokai bright neon accents |
| catppuccin-mocha | Mocha (#1E1E2E) | Catppuccin Mocha pastels |
To select a theme, configure it in your configuration file:
theme: dracula # or any listed aboveWhen viewing a worktree with an associated PR/MR, lazyworktree automatically retrieves and displays CI check statuses in the information pane.
βGreen - PassedβRed - FailedβYellow - Pending/RunningβGrey - SkippedβGrey - Cancelled
CI status is retrieved lazily (only for the selected worktree) and cached for 30 seconds to maintain UI responsiveness. Press p to force a refresh of CI status.
When creating a worktree from changes (via the command palette), issues, or PRs, you may configure an external script to suggest branch names. The script receives the git diff (for changes), issue title+body (for issues), or PR title+body (for PRs) on stdin and should output a single branch name.
This proves useful for integrating AI tools such as aichat, claude code, or any other command-line tool capable of generating meaningful branch names from code changes.
Note
Thereβs no need for a large or cutting-edge model for branch generation. Smaller models are usually cheaper and much faster. Googleβs gemini-2.5-flash-lite is currently the fastest and most reliable choice.
Add branch_name_script to your ~/.config/lazyworktree/config.yaml:
# Using aichat with Gemini
branch_name_script: "aichat -m gemini:gemini-2.5-flash-lite 'Generate a short git branch name (no spaces, use hyphens) for this diff. Output only the branch name, nothing else.'"
# Using gemini with Gemini cli
branch_name_script: "gemini --model gemini-2.5-flash-lite -p "Generate a short git branch name (no spaces, use hyphens) for this diff. Output only the branch name, nothing else."- Upon selecting "Create from changes" in the command palette, or when creating from an issue or PR
- Should
branch_name_scriptbe configured:- For changes: the current diff is piped to the script
- For issues: the issue title and body are piped to the script
- For PRs: the PR title and body are piped to the script
- The script's output (first line only) serves as the suggested branch name
- You may edit the suggestion prior to confirmation
- The script receives the git diff (for changes), issue title+body (for issues), or PR title+body (for PRs) on stdin
- It should output only the branch name (first line is used)
- Should the script fail or return empty output:
- For changes: the default name (
{current-branch}-changes) is employed - For issues: the template-based name (using
issue_branch_name_template) is employed - For PRs: the template-based name (using
pr_branch_name_template) is employed
- For changes: the default name (
- The script operates under a 30-second timeout to prevent hanging.
create-from-issue-demo.mp4
lazyworktree covers a broader set of use cases than most Git worktree tools, especially for interactive and human-driven workflows.
For a fair and detailed comparison with other popular worktree managers (including their respective strengths and trade-offs), see the COMPARAISON document.
Previously, this was a Python textual application; however, the startup time proved excessive, prompting a migration to a Go-based charmbracelet bubble Terminal User Interface. The original Python implementation remains available for review or testing at https://github.com/chmouel/lazyworktree/tree/python
- π Fediverse - <@[email protected]>
- π¦ Twitter - <@chmouel>
- π Blog - <https://blog.chmouel.com>