Git Process

🖥️ Git and Conventional Commit

Conventional commit is an awesome way to build professional and clean Git history. Why You Must Use Conventional Commits CHANGELOGs are automatically generated. Explaining changes to collaborators and other stakeholders. Triggering build processes. Structured commit history. You can learn more on the conventional commits guidelines and https://github.com/commitizen/cz-cli. Conventional commit messages structure <type>[optional scope]: <description> [optional …

Git Process

🖥️ Using Git Workflow

Git workflow Today, it becomes more and more important to have clean and easy processes for your software applications developments. Wether you are working for a big company or for a small startup, you may have to use a code versioning tool. Git a very powerful tool for such purpose. It enables developers to collaborate …

Process

🐛 Release Process using Standard-version

What is standard-version tool ? Standard-version is an incredibly useful tool that leverages a well-maintained git history to generate easily readable change-logs. This npm package is designed to streamline the process of creating change-logs and facilitate their delivery to clients. It offers several benefits, including automated version incrementing based on the git history and adherence …

C++ Code Process

🖥️ Set up your dev workspace C++

In this article, I will show you how to setup your working environment for C++ Projects. Let’s get started: Create a folder named: HOME_DEV, ideally in : C:/ for Windows ~ for Linux /Users/${YOUR_NAME}/ for Mac Examples: – Windows: `C:/HOME_DEV/` – Linux: `~/HOME_DEV` – Mac: `/Users/${YOUR_NAME}/HOME_DEV` 💡 CLI: Run mkdir “/Users/${USER}/HOME_DEV” to create the folder. …