Getting Git Code Management
I am now the code manager for the public repository of a project that takes pull requests from several active forks and has tagged releases. The problem is, that I've not found any single resource that covers advanced code management using Git. My local repository has multiple upstream sources that I synchronize. All are hosted at github.com.   This post is going to be a collection of little Git recipes. Many of them are collected from somewhere else, but others are more specific to the code management processes   Configure git for certificate-based credentials for multiple logins   Generate certificate  I was able to get this working by following the instructions  here . However, I also needed to add some commands to my "~/.basrc" file to provide my SSH credentials to the git/bash shell window. Each ssh-add command adds one certificate to the identity store.   #! /bin/bash  eval `ssh-agent -s`  ssh-add ~/.ssh/github_rsa ssh-add ~/.ssh/github_admin_rsa   Make the local co...