create new git worktree in tmux window.


Keywords
tmux, git, worktree
License
MIT
Install
npm install wttw@0.0.3

Documentation

wttw

create new git worktree in tmux window.

installation

$ npm install -g wttw

how it works?

$ tree
project
├── .default_files
│   └── default_file
└── master
    ├── .git
    └── files1

$ wttw new new_branch
$ tree
project
├── .default_files
│   └── default_file
├── new_branch
│   ├── .git
│   ├── default_file
│   └── file1
└── master
    ├── .git
    └── files1