treeflow 0.2.1

CLI tool for simplified Git worktree management to speed up switching contexts when working collaboratively.
Documentation
1
2
3
4
5
6
7
8
9
10
11
# Static aliases
alias primary='treeflow primary'
alias review='treeflow review'
alias finish='treeflow finish'

# Enable completion for aliases if zsh-completions is available
if type compdef > /dev/null 2>&1; then
  compdef _treeflow primary
  compdef _treeflow review
  compdef _treeflow finish
fi