Giter VIP home page Giter VIP logo

branch-trimmer's Introduction

trimmer

trimmer is a little CLI utility to help you easily trim your git branches.

Why?

This problem is pretty easily solved with the Git CLI, but I thought I'd do a little bit of overengineering. Plus bash isn't blazing fast.

Sample Usage

You probably want to try it on a dummy repo before using it on a real repo, so here's a bash snippet to help you do that!

cd /tmp
mkdir dummy_repo_trimmer
git init -b main

# this first commit is kind of optional but gives you a commit 0 to visualize
touch .gitkeep
git add .gitkeep
git commit -m "Initial commit"

for i in {1..8}
do 
  git checkout -b example_branch_$i
  echo "this is file $i" >> file_$i
  git add .
  git commit -m "commit of $i"
done
git checkout main

# the utility requires user input; these are the possible invocations
trimmer # will show all branches
trimmer -u # will show all branches that haven't been merged to HEAD
trimmer -m # will only show branches that have been merged to HEAD, should be pretty safe
trimmer --help # shows the options

branch-trimmer's People

Contributors

tarsir avatar

Watchers

 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.