Skip to content

Instantly share code, notes, and snippets.

@nirnejak
Created August 20, 2022 18:21
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nirnejak/73a709ce77f51070bce2bd0bef780e7f to your computer and use it in GitHub Desktop.
Save nirnejak/73a709ce77f51070bce2bd0bef780e7f to your computer and use it in GitHub Desktop.
Gum Commit
#!/bin/sh
TYPE=$(gum choose "fix" "feat" "docs" "style" "refactor" "test" "chore" "revert")
SCOPE=$(gum input --placeholder "scope")
# Since the scope is optional, wrap it in parentheses if it has a value.
test -n "$SCOPE" && SCOPE="($SCOPE)"
# Pre-populate the input with the type(scope): so that the user may change it
SUMMARY=$(gum input --value "$TYPE$SCOPE: " --placeholder "Summary of this change")
DESCRIPTION=$(gum write --placeholder "Details of this change (CTRL+D to finish)")
# Commit these changes
gum confirm "Commit changes?" && git commit -m "$SUMMARY" -m "$DESCRIPTION"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment