Blogs

GitHub - …

GitHub actions-template-sync abstract Sometimes we want to synchronise some git repositories. In general this is not a huge task using commands like git checkout -b "${NEW_BRANCH}" git pull "${SOURCE_REPO}" --allow-unrelated-histories in the target repository. Often there are many …

Git - How and why to sign …

abstract You should always sign your git commits. Why? Why to sign commits The git commits are super easy referenced to a user. Anyone all around the world is able to push commits with another name. The reference is done in the commit message with the user.email. You can try yourself. Just create a …

Git - Prevent accidentaly …

abstract Sometimes by accident people accidentally push credentials or other sensitive information into a git repository. For example AWS_SECRET_ACCESS_KEY and AWS_ACCESS_KEY_ID. Obviously bad people are able to find those secrets in the git repository or history using them to e.q. start …