Changes between Version 7 and Version 8 of Csle2022/Agenda/githubadministration


Ignore:
Timestamp:
Nov 29, 2022, 1:53:55 AM (17 months ago)
Author:
deepthi
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Csle2022/Agenda/githubadministration

    v7 v8  
    2626
    2727Navigate [https://github.com] and signup with your details
     28
     29=== Set up ssh on your computer ===
     30
     31see github’s guide to generating SSH keys.
     32
     33Look to see if you have files ~/.ssh/id_rsa and ~/.ssh/id_rsa.pub.
     34
     35If not, create such public/private keys: Open a terminal/shell and type:
     36
     37`$ ssh-keygen -t rsa -C "your_email@example.com"`
     38
     39Paste your ssh public key into your github account settings.
     40
     41Go to your github Account Settings
     42
     43Click “SSH Keys” on the left.
     44Click “Add SSH Key” on the right.
     45
     46Add a label (like “My laptop”) and paste the public key into the big text box.
     47
     48In a terminal/shell, type the following to test it:
     49
     50`$ ssh -T git@github.com`
     51
     52If it says something like the following, it worked:
     53
     54`Hi username! You've successfully authenticated, but Github does
     55not provide shell access.`
     56
     57
    2858
    2959== Install source tree on your computer ==