Skip to content

Instantly share code, notes, and snippets.

View JamesIves's full-sized avatar
커피는 나의 원동력

Jives JamesIves

커피는 나의 원동력
View GitHub Profile
@JamesIves
JamesIves / commit-message-guidelines.md
Last active June 13, 2025 15:18 — forked from okineadev/commit-message-guidelines.md
🤖 Copilot commit messages instructions for VS Code

Add the following data to settings.json within VSCode to auto-generate commit messages with Copilot using the Conventional Commit format. This is based off of this example, however includes more explicit instructions for all commit prefixes (such as docs, refactor, etc).

  "github.copilot.chat.commitMessageGeneration.instructions": [
    {
      "text": "Generate commit messages in Conventional Commits format with gitmoji. Follow this exact structure:\n\n```\n<type>[optional scope]: <gitmoji> <description>\n\n[optional body]\n```\n\nExamples:\n- `feat(auth): :sparkles: add new login validation`\n- `fix(api): :bug: resolve user data fetch timeout`\n- `docs: :memo: update README installation steps`\n- `docs: :bookmark: add JSDoc comments to media component`\n- `style: :art: format code according to linting rules`\n- `refactor: :recycle: restructure video platform detection logic`\n\nTypes must be one of:\n- `feat`: A new feature\n-