npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

git-hydra

v0.8.0-alpha2

Published

Installs a post-commit hook which helps split your work into multiple branches and PRs.

Downloads

4

Readme

git-hydra

This is a git post-commit hook which cherry-picks the new commit into another branch, conditionally creating the branch and optionally making a PR as well.

This makes it pretty easy to rapidly develop multiple independent features and split them up into branches and pull-requests.

This hook is currently unstable and highly experimental. There are various untested edge cases and some circumstance might make you lost and confused in your repo.

It does not (knowingly) run hard resets or other commands where you can permanently lose data. But none-the-less, please do not use this unless you have read the source code and are comfortable with your git knowledge. The reflog especially might come in handy.

Motivation

The idea is to increase throughput on projects with PRs and code-reviews. Especially where PRs need to be small, focused and self-contained, and reviews might take a day or more.

In high throughput development, you may be working on separate fixes and features in your working tree at the same time, and it can be painful to split them up into their own branches and pull-requests.

It can also be really annoying to always be working from an "old" master, not having all the latest fixes and improvements which are still in review.

This hook tries to simplify this workflow so you can do all your work on a single branch, where commits are automatically cherry-pick to the correct remote branch and pull-request.

Install

There is just one soft dependency. To create github pull-requests, you first have to install and configure the hub command line tool.

Here are at least two ways to install the post-commit hook itself.

Easy update npm way

Install the git-hydra npm package globally:

npm i -g git-hydra

Then you can install the post-commit hook into a repo like this:

git hydra install

This will install the hook as a symbolic link to the npm package which you can update later.

Manual install

Just move the post-commit.sh into the .git/hooks folder of a repository.

Usage

While committing as usual, append your commit message with a line containing only "Branch: ".

If all works like it should, you won't notice a difference in your working tree, but the new commit has been committed to the specified branch as well. If it didn't exist already, it does now, created from master.

If you end the message with "Push: " instead, the target branch will additionally be pushed to the remote and if you do "PR: ", a pull-request will be created on github.

Tips

It's recommended to create a local development branch which you can customise to your liking by merging in active branches and pull-requests. You should never push this branch.

On this branch you can crunch commits, splitting them into different pull-requests. The github client provides an excellent UI for selecting hunks and lines to commit. As long as they changes are fairly independent everything should be beautiful.

When master has been updated enough, you can start again by recreating the local branch from master, and merge all active pull-requests again.

Notes

  • The matcher is case insensitive and the colon is optional. E.g. you can end your commit message with "branch ".

  • If the commit conflicts with master or the target branch, you'll end up in the target branch where you have to resolve the merge conflict.

    After doing so, you can go back to the branch you came from. If you are missing changes from your working tree, run git stash pop and they should be back

  • If you forget to annotate where a commit should go, you can amend it's commit message and it will go where it should. It's also possible to undo and recommit it in the github application.