When working on projects hosted on GitHub, clear and concise commit messages are crucial for maintaining a well-organized codebase. They not only help collaborators understand the history of changes but also enhance your portfolio by showcasing your professionalism and attention to detail. Here are three practical examples of best practices for commit messages on GitHub.
To ensure that your commit messages convey the necessary information, use meaningful descriptions that explain what changes were made. This is especially important in collaborative projects where others rely on your messages to understand the context of the changes.
When adding a new feature to a web application, instead of writing a vague message like “added stuff,” you could provide a more detailed description. For example:
Add user authentication feature with JWT support
This message indicates exactly what was done and introduces the technology used (JWT - JSON Web Token), which informs the team about the implementation specifics.
Notes:
When you have multiple changes in a single commit, bullet points can help clarify the various updates made. This practice is particularly useful when refactoring code or addressing several issues in one go.
For instance, if you fixed several bugs in a module, instead of summarizing the changes in a single line, you could format your commit message like this:
Fix bugs in user profile module
This approach provides a clear breakdown of what was changed, making it easier for others to review the commit.
Notes:
Sometimes, it’s beneficial to include context around why a change was made. This practice is particularly useful when addressing bugs or implementing new features that may not be self-explanatory.
For example, if you fixed a critical bug that caused the application to crash under specific conditions, your commit message could reflect that:
Fix crash on user login when password field is empty
By including the reason for the fix, you provide clarity on the importance of the change, which can be beneficial for future reference or for anyone reviewing the commit history.
Notes: