I'm trying to setup a git client on linux. I uploaded my private key to the machine, and I understand that I should put it in ~/.ssh, but I don't have access to that folder.
How can I tell git to look for the private key somewhere else?
|
I'm trying to setup a git client on linux. I uploaded my private key to the machine, and I understand that I should put it in ~/.ssh, but I don't have access to that folder. How can I tell git to look for the private key somewhere else?
| ||||
|
feedback
|
|
One option is to use For example:
| |||
|
feedback
|
|
create a file inside yout you can use some command like
the content of the file should have the location of your key based on each host name. for example:
Then when git tries to acces each host it will follow the rules inside the config file based on the git host | |||
|
feedback
|
|
I would have said put the file name in You can give Now how to say git which options to pass to ssh? The GitTips page says create a wrapper script and point to it with the It looks like you also can use the git configuration | |||||
feedback
|