I recently had the problem that I was accidentally working on a local branch that was tracking a protected remote branch. In simple words: I was working on the main branch but was not allowed to push to origin/main. This is a good thing because I see the main branch as stable and I would… Continue reading Migrating commits to open branch
Month: June 2022
Fix ssh Git connection against Azure DevOps
I recently had the issue against my on premise Azure DevOps server, that the clone via ssh would fail with the message: The error can look different depending on if you already have a configuration file for SSH or not. But in any case, if a error is thrown, it is likely that the keys… Continue reading Fix ssh Git connection against Azure DevOps
Easy PDF form parsing and data handling
Recently I got a employee registration form in “docx” format and I can only assume that after I wrote all my information into the form HR copied it from there into the corresponding system. I thought to myself: That could be done easier. So I wrote a SpringBoot application, that offers a downloadable PDF form… Continue reading Easy PDF form parsing and data handling