Skip to content
/ wipit Public

wipit is a command line utility for git that makes it easier to save work in progress.

License

Notifications You must be signed in to change notification settings

jt/wipit

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

wipit

wipit is a git command line utility that makes it easier to save work in progress.

Install

gem install wipit

Commands

Save your work.

$ wipit
> git add . && git rm $(git ls-files --deleted) && git commit -m 'WIP'

Save your work to a topic branch.

$ wipit my_wip_branch
> git checkout -b my_wip_branch && git add . && git rm $(git ls-files --deleted) && git commit -m 'WIP'

Save your work to a topic branch and push to origin.

$ wipit my_wip_branch -p
> git checkout -b my_wip_branch && git add . && git rm $(git ls-files --deleted) && git commit -m 'WIP' && git push origin my_wip_branch

About

wipit is a command line utility for git that makes it easier to save work in progress.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages