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

@skyneticist/git-golee

v2.2.2

Published

A cli tool for git productivity See GitHub for simple explanation

Downloads

39

Readme

git-golee

cli tool for git productivity

written in go and packaged for consumption via npmjs.com

Go Report Card

This cli tool is intended to make frequent git work in the command line even less time-consuming.

Without git-golee

> git add .
> git commit -m "commit message goes here"
> git push --set-upstream origin branchName

With git-golee

> golee acpr "commit message goes here"

The main goals of this application are:

- To ~significantly reduce the time typing when working in git cli, without relying on hooks 
Note: (since I work on a team for a big company, it's preferred to have some versatility here)

- Easy to use
- To be as lightweight and efficient/performant as possible

- Easy to distribute/release
- Easy to update
- Easy to work on

Installing

There are multiple ways to download and install the git-golee cli tool. The preferred method is to use npm via the command-line--a lot of work was put into making this tool as portable and convenient for others to use on ANY platform!

Of course, you can clone the repository (or just download the necessary binary) and set the binary up in your environment PATH.

Or

go install in this directory: ./cmd/net-helper/

That's it. Now you can run golee using:

> golee

For the help prompt:

> golee h

Simpler Install [Preferred Method!]

This section explains how to simply install the git-golee tool using node package registry (npm). This is the preferred method!

npm i -g @skyneticist/git-golee@latest

That's it. Now you have access to git-golee via golee

One thing that IS nice about this tool is how easy it is to install and to keep updated. Also, the size of the executable is small and the way its being added to PATH is fast, safe, convenient.

To achieve all of this, Goreleaser and a custom postinstall script is used in combination with a package.json file. This essentially allows for a platform-independent way to install the git-golee tool with a simple npm command.

Please NOTE: there are way too many versions published here (I'm currently working on cleaning it up) - just know that v2.0.0 and later are working!

Packgage on NPM

Currently working on a way to set the command to gg instead of golee without setting an alias

Usage

invoke

golee

or

gg

commands

One of the most often set of commands used when working on a user story is:

  > git add .
  
  > git commit -m "message here"
  
  > git push

With git-golee, we can do the same with:

 > golee acp "commit message here"

or

 > gg acp "commit message here"

Similarly, when pushing a fresh remote, we usually would do:

  > git add .
 
  > git commit -m "message here"
  
  > git push --set-upstream origin <branch>` or `git push -u origin HEAD

With git-golee:

> golee acpr "commit message here"

or

> gg acpr "commit message here"

Renaming a branch can be a bit burdensome, but not with git-golee:

> golee rn <updatedBranchName>

or

> gg rn <updatedBranchName>

Other Useful Commands

There are a few other useful commands available for taking care of things like configuration and logging.

Set multiple authors globally in git config

> golee auth <author1> <author2>

> gg auth <author1> <author2>