I have a private key git file in my desktop wich I currently use and I also need to use on my laptop, my question is can I also use the same key in a different computer and if its possible how can I do it ??
I'm using tortoise git.
Cheers
feedback
|
This question came from our site for professional and enthusiast programmers.
|
You can, but you absolutely should not ever copy private keys between computers. Once it is transmitted over a network, you cannot be sure that it is kept secure. Moreover, private keys were not designed to be used this way. A private key represents an account on a specific device, not a user in general. The best practice is to generate a new private key for every user/machine combination you wish to use. (You can use the same passphrase in each case, if desired, because the private key will still come out differently, but for extra security you should use a different phrase. You can embed the user/machine name in the phrase to help you remember, if this becomes an issue.) | |||
|
feedback
|
|
You can. I share the same private key across several laptops. All you have to do is copy the | |||||||||
feedback
|