master
help track git Work In Progress branches — Read more
If you start vim in ~/project/a, and then edit ~/project/b/a.c saving will result in lots of errors.
git wip should detect that it's given a path in a different work tree and switch to it before running git commands.
$ git wip --editor fatal: Not a git repository (or any of the parent directories): .git
Should print wip branch name and number of commits on it.
Maybe something like this....
$ git wip info wip/topic is 5 commits ahead of topic
This command will list all wip branches
$ git wip list wip/foo wip/bar
$ git wip list -v wip/foo is 5 commits ahead of foo wip/bar is 1 commit ahead of bar
Should be able to delete wip branches.
$ git wip delete wip/foo $ git wip delete bar
There are thre ways to address this: