micro-apps
1.0.0
1.0.0
  • Introduction
  • Getting Started
    • Why
    • Hot it Works
    • Installation
    • Usage
  • Concepts
    • Introduction
    • Release
    • Versioning
    • Monorepos
  • Advanced
    • GitOps
    • Gradle
    • Makefile
    • Jenkins
    • Github Actions
  • Dev Ops
    • Keycloak
  • Recipes
    • Recipe 1
    • Recipe 2
  • Change Log
  • FAQ
Powered by GitBook
On this page
  • Getting Started
  • Prerequisites
  • Usage

Was this helpful?

  1. Getting Started

Installation

PreviousHot it WorksNextUsage

Last updated 5 years ago

Was this helpful?

Installing prerequisites and get started

Getting Started

Prerequisites

install the package from npm/brew

  1. git extension

    Check installation for your platform.

     brew install git-flow-avh
  2.  # CHANGELOG generator
     brew tap git-chglog/git-chglog
     brew install git-chglog
  3.   # install and configure `commitizen` git plugin
      yarn global add commitizen cz-conventional-changelog
      echo '{ "path": "cz-conventional-changelog" }' > ~/.czrc; # will create .czrc
      # then you can use commitizen as shown below
      cd non-node-git-repo
      touch foo
      git cz -a
  4. Install SonarLint Plugin for IntelliJ

Usage

Changelog

# first time
git-chglog --init
# on release branch, generate CHANGELOG.md and commit before merging back to develop & master.
git-chglog
git-chglog -next-tag 2.0.0

generate changelog using .

gitflow
instructions
git-chglog
Commitizen
SonarLint
git-chglog