- Streamlining ssh Configuration
- Show your .ssh/config file, and how you edited it (with VScode, another program, etc)
- Show the ssh command logging you into your account using just the alias you chose.
- Show an scp command copying a file to your account using just the alias you chose.
- Setup Github Access from ieng6
- Show where the public key you made is stored on Github and in your user account (screenshot).
- Show where the private key you made is stored on your user account (but not its contents) as a screenshot.
- Setting up Github access from ieng6:
- Clone MarkdownParse repository through pasting git clone (HTTPS link) in the terminal
- Change directory to MarkdownParse repository
- In the terminal, paste git remote set-url origin (repo SSH url)
- Enter touch test.txt
- Enter git add .
- Enter git commit -m "new change"
- Then git push
- Show running git commands to commit and push a change to Github while logged into your ieng6 account.
- Show a link for the resulting commit.
https://github.com/a3alani/markdown-parser/commit/d00a6083bfc06087c58cdf4bfde56e870d721568
- Copy whole directories with scp -r
- Enter
scp -r . [email protected]:~/markdown-parse
in the terminal to copy the whole direcotry into the server
Show copying your whole markdown-parse directory to your ieng6 account.
Show logging into your ieng6 account after doing this and compiling and running the tests for your repository.
Show (like in the last step of the first lab) combining scp, ;, and ssh to copy the whole directory and run the tests in one line.
- remove directory and then copy again using semi-colon for multiple commands in one line