Kart Git And TUFLOW: Difference between revisions
Content deleted Content added
Ellis Symons (talk | contribs) |
Ellis Symons (talk | contribs) |
||
Line 22:
* <b><u>[https://docs.github.com/en/authentication/connecting-to-github-with-ssh/generating-a-new-ssh-key-and-adding-it-to-the-ssh-agent Generate an SSH key]</u></b>
* <b><u>[https://docs.github.com/en/authentication/connecting-to-github-with-ssh/adding-a-new-ssh-key-to-your-github-account Adding an SSH key]</u></b>
<br>
Once the SSH key is setup, you can add it each time you open Git Bash so you don't need to enter your password repeatedly using:
<pre>
eval "$(ssh-agent -s)"
</pre>
and then
<pre>
ssh-add ~/.ssh/id_ed25519
</pre>
replacing <tt>id_ed25519</tt> is the name of your key. To add have it so it will save it even after a restart, you can add the key to the keychain by adding -K
<pre>
ssh-add -K ~/.ssh/id_ed25519
</pre>
==Setting up Control File Repository==
| |||