If you already have Git and VS Code installed and SSH keys set up, you can skip to the next section.
-
Install Git.
-
Download VS Code as your code editor.
-
Set Up VS Code to launch from the command line.
-
Install the following extensions:
- Live Server
- Git Lens
- Prettier
-
-
Sign up for a GitHub account and the GitHub Student Pack.
-
Set up SSH keys for GitHub.
-
For this repository, you only need to make a copy on your machine. You don't need to create a remote repository to push any of the code to.
-
As such, you can either fork the repo and make a clone of the forked repo or clone the given repo.
-
To fork and clone, click the "fork" button. This will create a public forked repository directly in your GitHub account.
$ git clone git@github.com:student/student-code-samples-forked-repository.git <folder-name>
Cloning into '<folder-name>'...
remote: Enumerating objects: 163, done.
remote: Counting objects: 100% (163/163), done.
remote: Compressing objects: 100% (93/93), done.
remote: Total 163 (delta 80), reused 136 (delta 61), pack-reused 0
Receiving objects: 100% (163/163), 68.15 KiB | 2.20 MiB/s, done.
Resolving deltas: 100% (80/80), done.
- To clone, navigate to your preferred folder and clone the repo. Use any folder name for .
$ git clone git@github.com:caterinasworld/webdev-code-samples.git <folder-name>
Cloning into '<folder-name>'...
remote: Enumerating objects: 163, done.
remote: Counting objects: 100% (163/163), done.
remote: Compressing objects: 100% (93/93), done.
remote: Total 163 (delta 80), reused 136 (delta 61), pack-reused 0
Receiving objects: 100% (163/163), 68.15 KiB | 2.20 MiB/s, done.
Resolving deltas: 100% (80/80), done.