0.1.5 • Published 10 years ago

gitwip v0.1.5

Weekly downloads
1
License
MIT
Repository
github
Last release
10 years ago

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"]
0.1.5

10 years ago

0.1.4

10 years ago

0.1.3

10 years ago

0.1.2

10 years ago

0.1.1

10 years ago

0.1.0

10 years ago