[amscotti@128bit.io ~/posts]# grep -l "git" *.md | xargs -n1 head _
Date: December 01, 2017

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.

Date: November 14, 2011

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.

Date: April 03, 2011

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.