Some of my CI/CD-Workflows depend on the commit-hash of git and I noticed one digit disappeared when I'm using:
echo $(git log --pretty=format:'%h' -n 1)
f7dc8fd
In the command-line to obtain the hash - notice the 7 digits. (Usually I save it for further usage)
On Gitlab the hash is different. 8 digits.
It seems to be new, it used to be the same. How to sync it again? Should a different command or configuration be used?