gitwip

0.1.5 • Public • Published

gitwip

About

git-wip manage Work In Progress Pull Request branches.

How to install

npm install -g gitwip

How to use

git wip

git wip -m "WIP" --fb feature-func equals to below commands

git checkout -b feature-func
git commit --allow-empty -m "WIP"

Help

% git-wip --help
Usage: git wip [options]

Options:
  -m, --message           commit message                [default: "wip"]
  --fb, --feature-branch  feature function branch name  [default: "wip"]

Example

% git wip --fb test
[test 8c0bbfc] wip

git unwip

git unwip --mb master --fb feature-func equals to below commands

git checkout master
git branch -D feature-func

Example

% git unwip --fb test
Your branch is up-to-date with 'origin/master'.
Deleted branch test (was 8c0bbfc).

Help

% git-unwip --help
Usage: git unwip [options]

Options:
  --fb, --feature-branch  feature function branch to be deleted  [default: "wip"]
  --mb, --merge-branch    branch to be merged                    [default: "master"]

Readme

Keywords

Package Sidebar

Install

npm i gitwip

Weekly Downloads

1

Version

0.1.5

License

MIT

Last publish

Collaborators

  • tamanyan