czg 1.3.6 → 1.3.9-beta.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (3) hide show
  1. package/README.md +29 -10
  2. package/bin/index.js +255 -245
  3. package/package.json +2 -2
package/README.md CHANGED
@@ -3,12 +3,23 @@
3
3
  > Interactive Commitizen CLI that generate standardized commit messages
4
4
 
5
5
  <p align="center">
6
- <a href="https://www.npmjs.com/package/czg">
7
- <img style="display:inline-block;margin:0.2em;" alt="npm" src="https://img.shields.io/npm/v/czg?style=flat-square&logo=npm">
6
+ <a target="_blank" href="https://cz-git.qbenben.com/cli/">
7
+ <img style="display:inline-block;margin:0.2em;" alt="CLI-Link" src="https://img.shields.io/badge/Commitizen-CLI-red.svg?logo=git&style=flat">
8
8
  </a>
9
+ <a target="_blank" href="https://github.com/agarrharr/awesome-cli-apps#git">
10
+ <img style="display:inline-block;margin:0.2em;" alt="awesome-cli-app" src="https://cdn.rawgit.com/sindresorhus/awesome/d7305f38d29fed78fa85652e3a63e154dd8e8829/media/badge.svg">
11
+ </a>
12
+ <br/>
9
13
  <a target="_blank" href="https://github.com/Zhengqbbb/cz-git">
10
14
  <img style="display:inline-block;margin:0.2em;" alt="GitHub Repo stars" src="https://img.shields.io/github/stars/zhengqbbb/cz-git?style=social">
11
15
  </a>
16
+ <br>
17
+ <a href="https://www.npmjs.com/package/czg">
18
+ <img style="display:inline-block;margin:0.2em;" alt="npm" src="https://img.shields.io/npm/v/czg?style=flat-square&logo=npm">
19
+ </a>
20
+ <a href="https://formulae.brew.sh/formula/czg">
21
+ <img style="display:inline-block;margin:0.2em;" alt="homebrew" src="https://img.shields.io/homebrew/v/czg?style=flat-square&logo=homebrew&label=homebrew">
22
+ </a>
12
23
  </p>
13
24
 
14
25
  <p align="center">
@@ -69,13 +80,16 @@ SUBCOMMAND:
69
80
 
70
81
  OPTIONS:
71
82
  --config Specify the configuration file to use
72
- --retry|-r Direct retry submit by the last message
73
- --help|-h Show help
74
- --version Show version
83
+ :, --alias Directly submit the defined commit message
84
+ -r, --retry Directly retry submit by the last message
85
+ -h, --help Show help
86
+ -v, --version Show version
75
87
 
76
88
  EXAMPLES:
77
89
  czg
78
90
  czg emoji
91
+ czg :ff
92
+ czg --alias=ff
79
93
  czg --config="./config/cz.json"
80
94
 
81
95
  Extends 'git commit' command and options.
@@ -84,17 +98,22 @@ See 'git commit --help' for more information.
84
98
 
85
99
  ## Installation
86
100
 
87
- ```
101
+ ```sh
88
102
  npm install -g czg
89
103
  ```
90
104
 
91
- [⇒ Get Started](https://cz-git.qbenben.com/cli/install.html)
105
+ > MacOS:
92
106
 
93
- ## Configure Template
107
+ ```sh
108
+ brew install czg
109
+ ```
94
110
 
95
- [⇒ Configure Template](https://cz-git.qbenben.com/config/)
96
111
 
97
- ## Options
112
+ [⇒ Get Started (more installation and usage)](https://cz-git.qbenben.com/cli/install.html)
113
+
114
+ ## Configure
115
+
116
+ [⇒ Configure Template](https://cz-git.qbenben.com/config/)
98
117
 
99
118
  [⇒ Show Related](https://cz-git.qbenben.com/config/show.html)
100
119