Skip to content

git

1. mailmap

src_username <src_mail> det_username <det_mail>

2. SSH Access

git config --add --local core.sshCommand 'ssh -i /path/id_ed25519'

In .git/config :

[remote "origin"]
        url = git@github.com:Co1lin/repo.git
        fetch = +refs/heads/*:refs/remotes/origin/*
[core]
        sshCommand = ssh -i /path/id_ed25519
[user]
        email = 
        name = 

Last update: January 27, 2022
Authors: Co1lin