Skip to content
This repository was archived by the owner on Nov 10, 2025. It is now read-only.

Cerebellum-ITM/CommitCraft

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

CommitCraft

Configuring Commit Types

This tool allows customization of commit types through configuration files, which can be placed in different directories with varying levels of priority:

  1. Local Configuration: Highest priority. Located in the execution directory .commitCraftConfig.toml.
  2. Global Configuration: Medium priority. Located in HOME/.config/CommitCraft/config.toml.
  3. Default Configuration: Lowest priority. Located in the tool's directory as default_config.toml.

Structure of the Configuration File

The configuration file should be in TOML format and include a [commit_types] section. Each commit type should be defined as a table within a list. Here is an example structure:

[commit_types]

[[commit_types.types]]
name = "feat"
description = "A new feature"
color = "#00FF00"

[[commit_types.types]]
name = "fix"
description = "A bug fix"
color = "#FF0000"

[[commit_types.types]]
name = "docs"
description = "Documentation only changes"
color = "#0000FF"

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages