add ssh key to github
$ ls -al ~/.ssh # Lists the files in your .ssh directory, if they exist
Here is what the above code is Doing:
1. The first line (which begins with $) is the command we want to run.
2. The second line is the output we expect to see when we run the command.
3. The third line is a comment that describes what the test is doing.