From 6293847cf21b7fe53eb307e7eb8c049d6ee42259 Mon Sep 17 00:00:00 2001 From: tbonaciUW <81722002+tbonaciUW@users.noreply.github.com> Date: Thu, 6 Jan 2022 20:10:30 -0800 Subject: [PATCH] Update Lecture1_README.md --- week1/Lecture1_README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/week1/Lecture1_README.md b/week1/Lecture1_README.md index 43b2221..c7f3c99 100644 --- a/week1/Lecture1_README.md +++ b/week1/Lecture1_README.md @@ -110,7 +110,7 @@ git clone https://github.com/tbonaciUW/EEP_520_Winter2022 Each week, we will add more code and README files. So you should do ```bash -git pull origin master +git pull origin main ``` to get the latest code. @@ -134,11 +134,11 @@ git init git add . git commit -m "first commit" git remote add origin https://github.com/yourusername/520-Assignments.git -git push -u origin master +git push -u origin main // edit and/or add some files git add . git commit -m "Changed some files" -git push origin master +git push origin main ``` Go back to Github to see your changes. Your student account should give you the ability to make private repos (so other students will not see your code).