Skip to content

Instantly share code, notes, and snippets.

@pavank
Created March 24, 2020 11:01
Show Gist options
  • Save pavank/aa2ff9115032b2d6fdd930d120d239e2 to your computer and use it in GitHub Desktop.
Save pavank/aa2ff9115032b2d6fdd930d120d239e2 to your computer and use it in GitHub Desktop.
Git Configuration
Ref : https://news.ycombinator.com/item?id=22672682
You can also do a per-directory _global_ git configuration, e.g.
in .gitconfig, you say:
[user]
name = Me Myself
email = personal@example.com
signingkey = D34DB44F
[includeIf "gitdir:~/src/github.com/work_org/"]
path = ~/.gitconfig_work
Then in ~/.gitconfig_work:
[user]
name = Me Myself
email = work@example.com
signingkey = D34DC0D4
[core]
sshCommand = ssh -i ~/.ssh/work_ed25519
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment