Skip to content

Latest commit

 

History

History
53 lines (25 loc) · 2.14 KB

lab-report-3-week-6.md

File metadata and controls

53 lines (25 loc) · 2.14 KB

Streamlining ssh Configuration

I edited the .ssh/config file through directly opening it from the open file function in VSCode:

1edit

The ssh command logging me into my account using just the alias I chose:

1login

An scp command copying a file to my account using just the alias I chose:

1scp


Setup Github Access from ieng6

Where the public key I made is stored on Github:

2key

Where the public and private key I made is stored in ieng6:

2 key in ieng6

Running git commands to commit and push a change to Github while logged into my ieng6 account:

2 add and commit and push

Here is the link to the commit


Copy whole directories with scp -r

Copying my whole markdown-parse directory to my ieng6 account:

3copying

Logging into my ieng6 account after doing this and compile and run the tests for my repository:

3 compile and run tests

Combining scp, ;, and ssh to copy the whole directory and run the tests in one line:

3 runtogether 1 3 runtogether 2