|
|
|
|
|
by aidenn0
182 days ago
|
|
You can also use your ssh config to set identities for any "host" you want, and the host doesn't need to be the real hostname. So you can do something like: Host project1.git
Hostname github.com
IdentityFile ~/.ssh/id_project1_ed25519
IdentitiesOnly yes
And then "git checkout git@project1.git:foo/project1.git" to checkout the file. |
|