JSPM

hgit

0.30.1-1
  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 9
  • Score
    100M100P100Q45317F
  • License MIT

Streamline and Simplify complex git processes

Package Exports

  • hgit
  • hgit/bin/index.js

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (hgit) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

hgit

a git workflow cli tool

Streamline and Simplify complex git processes


hgit v0.27.2


Features

  • check for conflict between multiple remote branch
  • start new workflows from a config file
  • ALL commands are read from the config file in ~/.config/hgit/config.json
  • dynamic branch checkout in workflows with command: go_pick_{pattern}
  • branchNamePattern from config: {branchName}__branch_pattern

TL;DR

The Default configs

branch create from can sync from branch name
flight master master flight/{description}
hotfix master master hotfix/{taskId}-{description}
feature flight parent flight feature/{taskId}-{description}
bugfix flight parent flight bugfix/{taskId}-{description}
other flight parent flight other/{taskId}-{description}

Hotfix branch:

  • Can only be created from master
  • While branch in active, can sync from master
  • Cannot take pull from dev
  • Should not take pull from another feature / flight / hotfix branch

Flight branch:

  • Will only be created from master
  • Can sync from master
  • Cannot sync from dev

feature/bugfix/other in Flight (Child branch -> Flight branch):

  • Task branches (feature/bugfix/other) should be created from the Flight branch
  • Cannot take pull from any branch but Flight branch
  • Can take pull from a sibling branch of the same flight if it depends on it

Flights(trunk)

  • flight is for the features, bugs, and improvements corresponding to the flight (epic) in the BugTracking system
  • Ticket branches can be created from a flight branch.
  • There are 3 ticket branch prefixes: featurebugfix, and other. These branches require a BugTracking task ID in their names.
  1. feature is for the small packed features inside the flight.
  2. bugfix is for the fixes and issues related to the flight.
  3. other is used for non-technical issues like documentation or infrastructure improvements, etc.

Hotfix

  • hotfix is dedicated to fixes regarding critical issues in the production environment.

npx

npx hgit

Installation

npm i -g hgit

Usage

hgit

Options

--verbose               | verbose logs