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-auto-merge

v0.6.3

Published

git auto push and merge

Downloads

126

Readme

English | 中文文档

Example

Push

Quick

git-auto-push-quick.gif

with the option

git-auto-push.gif

Merge

Quick

git-auto-merge-quick.gif

with the option

git-auto-merge.gif

Introduction

  1. Execute commands to automatically push code to remote servers, no more manual add, commit, push;
  2. Execute the command to directly select the merge code to other branches and push it to the remote, automatically cutting back to the original branch

Install

Can be installed locally or global:

# yarn
yarn global add git-auto-merge

#npm
npm install git-auto-merge -g

DOCS

Usage: git-auto <command> [options]

Options:
  -h, --help                             Display help information
  -v, --version                          output the current version
  --debug                                View detailed output
  -m, --commit <commit>                  [push] Add commit information
  --part                                 [push] Partial submission of documents only
  -f, --force                            [push] force update
  -b, --branch <branch...>               [merge] Branches to be merged, multiple separated by spaces
  -l, --latest                           [publish] Publish the latest patch version
  -p, --publish-branch <publish-branch>  [publish] Fill in a branch name and publish to npm
  -t, --tag [tag-name]                   [publish] Create a tag when publishing, you can write the name after a space

Commands:
  init                                   Add the script command under package.json
  push                                   Push the current branch to remote
  merge                                  Merge the current branch to another remote branch
  publish                                Publish code to npm

Usage

Code Push: git-auto push or git-auto push -m 'feat(src): logic'

Code Merge: git-auto merge or git-auto merge -m 'feat(src): logic' -b uat sit

Code Publish: git-auto publish or git-auto publish -m 'feat(src): logic' -b uat sit -p master -lt

View help: git-auto -h

Optional

Add Command

Executing the initialization git-auto init will automatically add the following to package.json for you.

{
  "scripts": {
    "gp": "git-auto push",
    "gm": "git-auto merge"
  }
}

Add Configuration

Create gm.config.js in the root of the project:

module.exports = {
  merge: {
    /** Mergeable branches, read all branches if not written by default */
    branch: [],
    /** Default merged branches */
    default: [],
  },
  publish: {
    /** Publish branch */
    branch: 'master',
    /** auto create Tag: v1.0.0 */
    tag: true,
    /** Automatic release of the latest patch version at release time */
    latest: true
  },

  /** Log prefix */
  logPrefix: '',

  /** Default commit information */
  commitDefault: {
    type: 'feat',
    module: 'index',
    message: 'logic',
  },

  /** Execute the callback after the merge is complete */
  callback: (commandName: 'push' | 'merge' | 'publish') => {},
}