Giter VIP home page Giter VIP logo

git-removed-branches's Introduction

Remove local branches which are no longer present in the remote git.

Why?

Because I'm tired of doing everytime git fetch -p, git branch -r, git branch and keep comparing which branches are gone from the GitHub, but still available locally and doing git branch -D ${branch_name} on one by one of them.

What does it do

This command will compare your local branches with remote and will show you branches which are no longer available on remote but are still presented in your local repository. You can use it to view and to delete all (remotely) removed branches in one go using --prune flag.

This command works without need to run git fetch -p, but working network connection to your remote is required. If no connection can be established with remote repository, then local information about your remote will be used instead. If your local repository is not in sync with remote repository will it warn you about it.

Installation

NPM

$ npm install -g git-removed-branches

Please install package globally with -g flag, so that you can use it directly as subcommand of git, like this:

$ git removed-branches

Python

It's also possible to use python, instead of node.js/npm package. Download git-removed-branches.py script, remove extension and place it inside your $PATH variable, so that you can use it directly as subcommand of git:

$ git removed-branches

Usage

$ git removed-branches

This command will look through the branches which are no longer available on the remote and will display them. In case you haven't run git fetch -p, it will warn you to do so.

Removing

In order to delete local branches use --prune or -p flag

$ git removed-branches --prune

Different remote

If you have configured remote alias to something different then 'origin' you can use --remote or -r flag to specify the name of the remote. e.g., to specify remote to be upstream you can use:

$ git removed-branches --remote upstream

Forcing removal

If you get an error when trying to delete branches:

The branch {branch_name} is not fully merged.

you can force deletion by using --force flag or use -f alias

$ git removed-branches --prune --force

git-removed-branches's People

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.