Git Re-tagging is bad

We all know Git does not like to limit you in any direction although in some aspects it should. And because of that freedom there are also some additional possibilities you can do when you want to cover up your own mistakes. (more...)

Git fetch or clone or checkout filename too long fatal error Windows

Windows had a 260 character path limit, so if you put your git repository in Documents and Settings with a long username, you might soon hit into a problem. This limitation is not depended on cmd or command (or any other shell), but it is inside Windows itself. (more...)

VersionConflict when installing certbot

LetsEncrypt saved the web few years back with free SSL certificates and automation to generate and verify them made it easy for hobby servers to also gain their SSL certificates and https protection. It was all great and with some minor hickups (like buggy nginx setup), but once you lived over that it renewed it all perfectly. (more...)

Automate your ssh or git clone from inside Docker

Solution to automating any ssh command is to avoid having to type yes to all the various questions exposed. For this post I will limit myself to the fact that you have the keys inside your Docker. If you burnt your precious ssh keys into image which is bad (ADD command), or added via volume mapping when running a docker (-v flag) does not matter as long as you know where they are. (more...)