Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/estebanways/git-commit-emoji-conventions
๐ ๏ธ A Git Commit Emoji Conventions Table
https://github.com/estebanways/git-commit-emoji-conventions
ai-commits commit commit-message commits conventional-commits developer-tool emoji emoji-picker emojipedia git programming-fundamentals
Last synced: about 1 month ago
JSON representation
๐ ๏ธ A Git Commit Emoji Conventions Table
- Host: GitHub
- URL: https://github.com/estebanways/git-commit-emoji-conventions
- Owner: estebanways
- License: cc0-1.0
- Created: 2023-11-11T23:03:03.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2023-11-12T02:28:20.000Z (about 1 year ago)
- Last Synced: 2023-11-13T00:21:20.301Z (about 1 year ago)
- Topics: ai-commits, commit, commit-message, commits, conventional-commits, developer-tool, emoji, emoji-picker, emojipedia, git, programming-fundamentals
- Homepage:
- Size: 8.79 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# git-commit-emoji-conventions
### Git Commit Emoji conventions
| Category | Emoji | Description | Commit Example 1 | Commit Example 2 |
|----------------------------|---------------------------------|------------------------------------------------------|--------------------------------------------------------|--------------------------------------------------------|
| **Fundamental** | โจ `:sparkles:` | Feature | "Implement user authentication feature" | "Add OAuth2 support for user authentication" |
| | ๐ `:bug:` | Bug Fix | "Fix null pointer exception in user login" | "Resolve issue with incorrect error handling" |
| | ๐ `:books:` | Documentation | "Update API documentation for new endpoints" | "Add usage examples to API documentation" |
| | ๐ `:gem:` ๐จ `:hammer:` | Code Style/Refactoring | "Refactor utility class for better readability" | "Improve code structure in utility functions" |
| | ๐๏ธ `:racing_car:` | Performance Improvement | "Optimize database queries for faster response" | "Improve caching mechanism for better performance" |
| | ๐จ `:rotating_light:` | Testing | "Add unit tests for user registration module" | "Enhance test coverage for user authentication" |
| | ๐ฆ `:package:` ๐ท `:construction_worker:` | Build/Continuous Integration | "Update dependencies for security patch" | "Configure CI/CD pipeline for automated testing" |
| | ๐ง `:wrench:` ๐งน `:broom:` | Chore/Cleanup | "Remove unused variables and optimize imports" | "Clean up code for better codebase maintenance" |
| **Development** | ๐ `:eyes:` | Code Review | "Address code review feedback for feature X" | "Incorporate code review suggestions for feature Y" |
| | ๐ `:twisted_rightwards_arrows:` | Data Model Changes | "Add new fields to the user model" | "Modify database schema to support new features" |
| | ๐ `:arrows_counterclockwise:` | Dependency Update | "Update Spring Boot version to 2.5.0" | "Upgrade dependencies to latest versions" |
| | โช `:rewind:` | Revert | "Revert last commit due to issues" | "Undo recent changes to fix unintended consequences" |
| | ๐ `:globe_with_meridians:` | Localization/Internationalization | "Translate error messages to French" | "Localize UI strings for Spanish language" |
| **Infrastructure** | ๐ `:truck:` | Deployment | "Deploy application to production server" | "Automate deployment process with Docker" |
| | ๐ฅ `:inbox_tray:` | Dependency Management | "Add new library for enhanced data processing" | "Manage dependencies with Gradle for consistency" |
| **Security** | ๐ก๏ธ `:shield:` | Security | "Implement secure password hashing" | "Enhance encryption for sensitive user data" |
| **Data Management** | ๐๏ธ `:file_cabinet:` | Database | "Create migration script for new database schema" | "Optimize database indexes for improved performance" |
| | ๐ `:clipboard:` ๐ `:bar_chart:` | Logging | "Update logging format for better analysis" | "Implement structured logging for easier troubleshooting"|
| | ๐ `:octagonal_sign:` | Data Validation | "Validate user input to prevent SQL injection" | "Implement input validation for form submissions" |
| **User Interface (UI)** | ๐จ `:art:` | User Interface (UI) | "Redesign homepage for improved user experience" | "Implement responsive design for mobile users" |
| **Release** | ๐ `:tada:` | Release | "Release version 1.0.0 with new features" | "Prepare release candidate for QA testing" |
| **Performance** | โฑ๏ธ `:stopwatch:` | Performance Testing | "Run load tests to measure system performance" | "Conduct stress testing to identify performance bottlenecks"|
| **Configuration and Settings** | โ๏ธ `:gear:` | Configuration | "Update application properties for production" | "Configure environment variables for deployment" |
| **Feature Management** | ๐๏ธ `:level_slider:` | Feature Toggle | "Implement feature toggle for experimental feature" | "Enable feature toggle for A/B testing" |
| **Notifications** | ๐ `:bell:` | Notification | "Send email notification on user registration" | "Implement push notifications for real-time updates" |
| **Compatibility** | ๐ `:repeat_one:` | Compatibility | "Ensure compatibility with Java 11" | "Test compatibility with latest browser versions" |
| **Concurrency** | ๐ `:arrows_counterclockwise:` | Concurrency | "Implement thread-safe caching mechanism" | "Optimize concurrency for parallel processing" |
| **Bug Investigation** | ๐ `:mag:` | Bug Investigation | "Investigate and fix issue with data corruption" | "Analyze and address bug reports from user feedback" |
| **Third-Party Integration** | ๐ค `:handshake:` | Third-Party Integration | "Integrate payment gateway for online transactions" | "Implement API integration for third-party service" |
| **Mocking/Faking** | ๐ค `:robot:` | Mocking/Faking Services | "Implement mock service for external API testing" | "Create dummy data service for testing purposes" |
| **Error Handling** | ๐ฆ `:traffic_light:` | Error Handling | "Improve error handling for user input validation" | "Enhance error messages for better user understanding" |
| **Logging Improvement** | ๐ `:chart_with_upwards_trend:` | Logging Improvement | "Enhance logging to capture additional metrics" | "Implement log rotation for efficient log management" |