🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more
Socket
DemoInstallSign in
Socket

wipit

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

wipit

0.1.1
Rubygems
Version published
Maintainers
1
Created
Source

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

FAQs

Package last updated on 29 Sep 2011

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts