|
12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- title: Setting Up Git Identities
- url: https://www.micah.soy/posts/setting-up-git-identities/
- hash_url: 4218c8b3332d61d6702bb2bd73ea9944
-
- <p>Working on many projects across multiple identities can be difficult to manage. This is a procedure for leveraging git aliases to set an identity at the project level for any project with support for GPG-based commit signing.</p>
- <h3 id="first-remove-any-existing-global-identity">First, remove any existing global identity</h3>
- <div class="highlight"><pre><code class="language-shell" data-lang="shell">git config --global --unset user.name
- git config --global --unset user.email
- git config --global --unset user.signingkey
- </code></pre></div><h3 id="require-config-to-exist-in-order-to-make-commits">Require config to exist in order to make commits</h3>
- <p>Without the global user name and user email, git would use the system’s hostname and username to make commits. Tell git to throw an error instead, requiring you to specify an identity for every new project.</p>
- <div class="highlight"><pre><code class="language-shell" data-lang="shell">git config --global user.useConfigOnly true
- </code></pre></div><h3 id="for-each-identity-generate-gpg-keys">For each identity, generate GPG keys</h3>
- <p><img src="https://www.micah.soy/posts/setting-up-git-identities/keygen.png" alt="GPG key generation output"/></p>
- <p>Generate a GPG public/private key pair:</p>
- <p>Choose (1) RSA and RSA (default) key type. Choose key size of 4096 bits. Set the key to not expire (0) unless you want to repeat this step periodically. Finally, set your name and email address. Comment can be left blank.</p>
- <p>Once the key pair is generated we need to export the public key.</p>
- <h3 id="export-the-public-keys">Export the public keys</h3>
- <p><img src="https://www.micah.soy/posts/setting-up-git-identities/key-export.png" alt="GPG key export"/></p>
- <p><em>For each identity</em>, export the public key:</p>
- <div class="highlight"><pre><code class="language-shell" data-lang="shell">gpg --list-secret-keys --keyid-format LONG user@example.com
- </code></pre></div><p>where <code>user@example.com</code> is the email address of the identity you just created.</p>
- <p>This will output a <code>sec</code> ID in the format of <code>rsa4096/[serial]</code>. Copy the serial number, then run this command to output the public key:</p>
- <div class="highlight"><pre><code class="language-shell" data-lang="shell">gpg --armor --export <span>[</span>serial<span>]</span>
- </code></pre></div><p>Copy the public key block and add it to your Github or Gitlab settings. With the public key, Github and Gitlab can cryptographically verify your commits, placing a “Verified” label next to each.</p>
- <h3 id="set-global-git-config-identities">Set global git config identities</h3>
- <p>Now we need to create the identities in git’s global config. For example:</p>
- <div class="highlight"><pre><code class="language-shell" data-lang="shell">git config --global user.gitlab.name <span>"Your Name"</span>
- git config --global user.gitlab.email <span>"gitlab@example.com"</span>
- git config --global user.gitlab.signingkey 543166183AE7043A
- git config --global user.github.name <span>"Your Name"</span>
- git config --global user.github.email <span>"github@example.com"</span>
- git config --global user.github.signingkey BCF8B7A8C138D16B
- git config --global user.identity3.name <span>"Your Name"</span>
- git config --global user.identity3.email <span>"identity3@example.com"</span>
- git config --global user.identity3.signingkey 4F3FFC37B1A027BD
- git config --global user.identity4.name <span>"Your Name"</span>
- git config --global user.identity4.email <span>"identity4@example.com"</span>
- git config --global user.identity4.signingkey D921F8BA473CF1FC
- </code></pre></div><h3 id="create-git-alias">Create git alias</h3>
- <p>Setting a git alias will give us a new git command to use to set the identity at a project level. This really is just a script that sets a particular global identity to the local config.</p>
- <div class="highlight"><pre><code class="language-shell" data-lang="shell">git config --global alias.identity <span>'! git config user.name "$(git config user.$1.name)"; git config user.email "$(git config user.$1.email)"; git config user.signingkey "$(git config user.$1.signingkey)"; :'</span>
- </code></pre></div><h3 id="specify-git-identity">Specify git identity</h3>
- <p>For each project, specify the git identity to use:</p>
- <div class="highlight"><pre><code class="language-shell" data-lang="shell">$ cd /path/to/git/repo
- $ git config user.email <span># should be no response</span>
- $ git config user.github.email
- github@example.com
- $ git identity github
- $ git config user.email
- github@example.com
- </code></pre></div><p>That’s it! Now whenever you start a new project or work on an existing project, you can be confident that the correct name, email address, and GPG signing key are being used.</p>
|