Learning Good Practices For Git

This guide will provide you with a solid foundation for adopting best practices in using Git, a version control system essential in software development. Good practices in Git are fundamental to maintaining a clean, traceable, and understandable change history, which in turn contributes to more efficient collaboration and the creation of higher-quality software.

I will focus on the Conventional Commits specification, a standard that facilitates writing clear and concise commit messages, following a predefined structure. By adopting this standard, you will improve communication among team members, automate processes such as changelog generation, and facilitate version management.

How to Write Commits Correctly

The format of a Conventional Commit is as follows:

<type>[optional: (scope)]: <description>

[optional: body]

[optional: footer]

Where:

  1. Type: This is an identifier that indicates the type of change being introduced. Common types include:

    • feat: Adds or remove a new feature.
    • fix: Bug fix.
    • chore: Changes to the build process or auxiliary tools.
    • docs: Commits that affect documentation only.
    • style: Changes that do not affect the meaning of the code, such as whitespace, formatting, missing semicolons, etc.
    • refactor: Rewrite / restructure your code, however does not change any API behaviou.
    • perf: Code change that improves performance.
    • test: Adding missing tests or correcting existing ones.
  2. Scope (optional): This is an identifier that indicates the section of the code that is affected by the commit.

  3. Breaking Changes Indicator (optional): Breaking changes should be indicated by an ! before the : in the subject line e.g. feat(api)!: remove status endpoint

  4. Description: This is a brief description of the changes introduced in the commit. It should be clear and concise.

  5. Body (optional): This is a more detailed description of the changes introduced in the commit. It is written after the description and after leaving a blank line.

  6. Footer (optional): This is used to reference issue numbers that are closed with the commit.

Here are some examples:

How to Name Your Branches Effectively

Like commit messages, branch names play a crucial role in organizing and understanding your development history. A good practice is to follow a naming convention that reflects the purpose of the branch. 7

<type>/<branch-name>

Where:

Examples