Keep Track of Commit id in Code Development
Obtaining the current Git commit ID in C++ code serves several purposes, mainly for debugging, version tracking, and reproducibility.
1. Importance
Here are some common reasons.
1.1 Version Identification
- Embedding the commit ID allows you to track exactly which version of the code was used in a given build.
- Useful in applications where users report issues, so developers can quickly identify the codebase version.
1.2 Reproducibility and Debugging
- When debugging issues, knowing the exact commit helps developers check out the same version and reproduce bugs.
- If a crash report or log includes the commit ID, developers can match it to the corresponding source code.
1.3 CI/CD
- Including the commit ID in the build helps with tracking which commit was deployed.
- This is essential in automated deployment pipelines.
2. The Most Common Practice
We can embed the commit ID into the C++ program at compile time by using git rev-parse --short HEAD
. We can achieve that by adding the following to our CMakeLists.txt
to extract the Git commit ID and define it as a macro.
1 | # Get the current Git commit ID |
And then we can use the macro in C++ code.
1 |
|
Here is the complete CMakeLists.txt
file.
1 | # Minimum CMake version required |
Keep Track of Commit id in Code Development