Skip to content
/ wttw Public

🌳 create new git worktree in tmux window.

Notifications You must be signed in to change notification settings

chitacan/wttw

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

57 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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