Forrest logo
back to the gitmoji tool

gitmoji:tldr:36bd6

gitmoji: Search emoji list for a list of keywords.
$ gitmoji --search ${keyword1} ${keyword2}
try on your machine

The command you provided, "gitmoji --search ${keyword1} ${keyword2}", is using the gitmoji tool to perform a search based on the provided keywords.

gitmoji is a CLI (Command Line Interface) tool that adds emoji codes to your Git commits. It enhances the commit messages by allowing developers to use emojis to represent the type, purpose, or impact of the commit.

In this specific command, the --search flag is used to indicate that we want to perform a search. ${keyword1} and ${keyword2} are placeholders for the actual keywords you want to search for. You would replace them with the actual keywords you want to use.

For example, if you want to search for emojis related to "bug" and "fix", you would execute the command as follows:

gitmoji --search bug fix

This would search for emojis that are related to bug fixes. The tool would then return a list of emojis matching those keywords, along with their codes and descriptions.

Keep in mind that the exact functionality and options of gitmoji may vary depending on the version and configuration of the tool you are using. It's always a good idea to refer to the official documentation or help resources for more accurate and detailed information on using the tool.

This explanation was created by an AI. In most cases those are correct. But please always be careful and never run a command you are not sure if it is safe.
back to the gitmoji tool