You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# Choco supports markdown nuget and psgallary done
10
-
$Additional_descriptions=@"
11
-
*CommitFusion* is a PowerShell module crafted to streamline the creation of well-organized and uniform commit messages in adherence to the [🧷Conventional Commits specification](https://www.onventionalcommits.org/en/v1.0.0/) for your `git` repository.
12
-
13
-
A custom version of the [🧷carloscuesta gitmojis Schema](https://github.com/carloscuesta/gitmoji/blob/master/packages/gitmojis/src/gitmojis.json) (accessible at [🧷gitmoji.dev](https://gitmoji.dev)) is used to define the emojis, scope, and default description of the commit string.
10
+
$Additional_descriptions=@'
11
+
***CommitFusion*** is a **PowerShell** module designed to streamline the process of generating *Conventional Commits Messages* in `git`. Commit messages are constructed using the [🧷Conventional Commits specification](https://www.conventionalcommits.org/en/v1.0.0/) standard, and uses [🧷gitmojis Schema](https://github.com/carloscuesta/gitmoji/blob/master/packages/gitmojis/src/gitmojis.json) see [🧷gitmoji.dev](https://gitmoji.dev), The module allows the construction of a custimized commit message with a number of options.
14
12
15
13
### Features
16
14
17
-
- Conventional Commit specification.
18
-
- Custom commit Types.
19
-
- Customizable Commit Messages.
20
-
- Changelog auto-updater.
21
-
- Semver(*Semantic Versioning specification*).
22
-
- Emoji parser.
23
-
- Gitmoji parser.
24
-
- Auto Commit
25
-
"@
15
+
🪶 Conventional Commits Standard
16
+
🪶 Customizable Commit Message
17
+
🪶 Semver Versioning Generator
18
+
🪶 Changelog Auto-update with Markdown Auto-format
19
+
🪶 Gitmoji Custom Schema
20
+
21
+
## 🎾 Using Commitfusion
22
+
23
+
Retrive list of available commit types
24
+
25
+
``````powershell
26
+
Get-CommitTypes
27
+
``````
28
+
29
+
Retrive list of available commit types.
30
+
31
+
``````powershell
32
+
Get-CommitTypes -Semver patch
33
+
Get-CommitTypes -Semver minor
34
+
Get-CommitTypes -Semver major
35
+
Get-CommitTypes -Semver nosemver
36
+
``````
37
+
38
+
Creating a new feature` commit.
39
+
40
+
``````powershell
41
+
# Default Returns ]string]
42
+
``````
43
+
44
+
Assuming you have staged files, you can use the following to commit the changes:
0 commit comments