Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# intro-workshop

Hello!!

Welcome! This workshop is intended to provide a basic overview of both the Linux command line and how to set up and use Git. They may seem a little complicated now, but both are very widely used in software and data science, and learning how to use them will be extremely crucial skills. Let's get started!

## Initial setup
Expand Down Expand Up @@ -62,7 +64,6 @@ Since the home directory is accessed quite frequently, it's shortened to `~`.

Now, let's learn how to move around the filesystem! To make things easier, we're going to use a `git` command to pull down some files to work with:


Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

You took away my spaces!

```shell
git clone https://github.com/mbestavros/intro-workshop.git
```
Expand Down Expand Up @@ -207,7 +208,7 @@ ssh-keygen -t rsa -C "[email protected]"

The command will prompt you for an alternate file location and a password; it's okay to accept the defaults by pressing Enter. (If you'd like to password protect your key, go ahead - just remember your password!)

Finally, check for the new key files using `ls`:
Finally, check for the new key files using `ls`:

```shell
ls -al ~/.ssh
Expand Down