Guide to adding GPG signature verification to Git commits. Discusses preventing impersonation since Github can't validate authorship, using Homebrew to install GPG, generating 4096-bit keys, creating verified signature example, and configuring Git to show verified commits with green checkmarks while protecting private keys.
A guide to migrating SVN repositories to Git while preserving complete commit history. Uses git svn init and git svn fetch to import with all history, then git svn can be used to continue pushing back to SVN if needed, allowing gradual transition while maintaining compatibility.
A guide to setting up remote Git repositories on Linux servers via SSH or on USB flash drives. Covers creating a bare repository with git init --bare, using --shared flag for team projects, pushing to remote repositories, adding remote servers for easier access, and leveraging SSH keys for authentication.
Thoughts on adopting Git after previously using only SVN, including moving blog code to GitHub for open source sharing under GPL. Reviews O'Reilly's "Mastering Git" video series by McCullough and Berglund, which covers setup, branching, tagging, and merging while noting Git's benefits for workflow and code quality beyond just version control.