Skip to content

kmurphy4/wt

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

19 Commits
 
 
 
 
 
 
 
 

Repository files navigation

wt

utility for wrapping around git worktree, allowing easy navigation between trees

installation

$ git clone https://github.com/keggsmurph21/wt.git ~/.wt
$ cd ~/.wt
$ ./install
$ source ~/.bashrc

usage

see current worktrees
$ wt list
worktrees:
  - master
  - feature-123
  - testing
  - stable
$ wt list --all
worktrees:
  - master                0123456 /path/to/master
  - feature-123           7890abc ~/.worktrees/:owner/:repo/feature-123
  - testing               1234567 ~/.worktrees/:owner/:repo/testing
  - stable                890abcd ~/.worktrees/:owner/:repo/stable
jump to a specific worktree
$ pwd
/path/to/master
$ wt use testing
$ pwd
~/.worktrees/:owner/:repo/testing
add a new worktree (coming soon)
$ pwd
/path/to/master
$ wt add new-branch # coming soon!
$ wt list
worktrees:
  - master
  - feature-123
  - testing
  - stable
  - new-branch
$ pwd
~/.worktrees/:owner/:repo/new-branch

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 67.7%
  • Shell 32.3%