Task 1 - Introduction to the Submission Workflow#
Task 1.1: Accept the lab assignment#
You will find the link to accept the lab on Canvas, under âCourse Contentâ and then âGitHub Linksâ.
You can get your clone URL from GitHub:
Task 1.3 - Open the lab in VS Code#
Though it is possible to open individual files in VS Code (a code editor), it is usually preferred to open the entire folder in VS Code. You can do this in one of two ways:
Option 1: Using mouse clicks#
You will need the location where you cloned the lab.
Open VS Code.
Click
File
, and thenOpen Folder
.Find the location where you cloned the lab, and then open it.
Option 2: Using the Terminal#
There are only two steps (after you clone the repo):
You will need to change directory where you cloned the lab:
cd
lab1-demoFiras
(substitutedemoFiras
with your username).code .
will open VS Code in the current directory.
Task 1.4 - Use the markdown Previewer#
While you practice with Markdown syntax, it is useful to see a âPreviewâ of what it will look like. Hereâs the effect of the preview extension you installed in VS Code:
Task 1.5 - Add information to your activity.md
file#
In this repository, there is an empty file called âactivity.md`. Your task is to add markdown elements to this file using VSCode.
In this new file called
activity.md
, add a header of Level 1 called âLecture Activity 1â.Commit the change, add a comment about what it is.
Edit the
activity.md
file, and answer the following questions - each question should be a level 2 heading:Have you ever used GitHub before? Yes/No
Explain - in your own words - what you think is meant by âversion controlâ (youâre welcome to look it up, just donât plagiarize!)
Explain - in your own words - what you think is the difference between Git and GitHub.
Thatâs it! Youâre all done this Activity.