New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

git-workflow-cli

Package Overview
Dependencies
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

git-workflow-cli

CLI commands for Git workflow

latest
Source
npmnpm
Version
1.4.1
Version published
Maintainers
1
Created
Source

git-workflow-cli

Build Status Greenkeeper badge npm npm

Installation

npm install git-workflow-cli --global

Discussion

Some minor git workflow commands that I could probably write bash scripts for.

  • G dcb - Delete current branch that's been merged
    • Checkout master
    • Pull from origin
    • Delete previous branch
      • Option to force delete
  • G dab - Delete all merged branches
    • Checkout master
    • Pull from origin
    • Find all merged branches via the git branch --merged master command
    • Delete all branches
    • Prune all remote local branches
  • G rcb - Rebase current branch against master
    • Checkout master
    • Pull from origin
    • Checkout previous branch
    • Rebase against master
  • G rcbfp - Rebase current branch against master and force push
    • Checkout master
    • Pull from origin
    • Checkout previous branch
    • Rebase against master
    • Force push branch to origin
  • G cpm - Checkout and pull origin/master
    • Checkout master
    • Pull from origin

Keywords

git

FAQs

Package last updated on 14 Jun 2018

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