|
You are here |
branchandbound.net | ||
| | | | |
blog.josefsson.org
|
|
| | | | | ||
| | | | |
blog.omega-prime.co.uk
|
|
| | | | | I recently released my first open source library for Java, MDBI. I learnt a lot about the Java open-source ecosystem as part of this process, and this blog summarises that in the hope that it will be useful to others. Specifically, the post will explain how to set up a project using the modern Gradle build system to build code and deploy it to the standard Maven Central repository from the command line really easily. | |
| | | | |
blog.torproject.org
|
|
| | | | | Recently it has come to the attention of, well, nearly the entire world that the Dutch... | |
| | | | |
emmanuelbernard.com
|
|
| | | Today I learned that you could sign your Git commits not only via a gpg key but also via a ssh key. Let's see how. GPG keys and Git signing I've never had the rigor to use a maintain a gpg key over the years. For some reasons, I've always found it too cumbersome. On the other hand, I've managed my ssh keys pretty well (you better be to log into remote machines, right?). I've been working on a small project for my French podcast Les Cast Codeurs where the main maintainer is enforcing commit signing. That's a good thing but I felt like one more thing between me a success! So I investigated how to do SSH signing. How to set up ssh signing for your git project Without further due git config user.name "Emmanuel Bernard" git config user.email "my-email@example.net... | ||