Skip to content

🔧 Commands

GlyphIt provides a small but powerful set of subcommands.
All commands are implemented in the src/functions/ module.


glyphit add

Stages files for commit with emoji tagging.

glyphit add [files...]

Example:

glyphit add src/main.rs

Or also:

glyphit add .

glyphit commit

Creates a Git commit with the standardized emoji prefix.

glyphit commit

Example:

glyphit commit
# Then it will start an interactive prompt
# => 🐛 fix: memory leak

All the commit message building process is evolutional and aims to avoid user do errors while building it.


glyphit push

Pushes your changes to the current branch.

glyphit push

Equivalent to:

git push origin HEAD