Skip to content

Latest commit

 

History

History
56 lines (37 loc) · 2.21 KB

File metadata and controls

56 lines (37 loc) · 2.21 KB

Intro to Web Development - Code Samples Repository - Setup Instructions

Git & VS Code Installation

If you already have Git and VS Code installed and SSH keys set up, you can skip to the next section.

  1. Install Git.

  2. Download VS Code as your code editor.

  3. Sign up for a GitHub account and the GitHub Student Pack.

  4. Set up SSH keys for GitHub.

Setting up the Code Samples Repository (with SSH)

  1. 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.

  2. As such, you can either fork the repo and make a clone of the forked repo or clone the given repo.

  3. 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.
  1. 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.