/webLecture-2021

Lecture material for 2021

Primary LanguageJavaScript

webLecture-2021

Lecture material for 2021

For the first time

1. Clone the repository to your computer

cd whereYouWantToPut
git clone https://github.com/NTUEEInfoDep/webLecture-2021.git

2. Switch to a new branch

cd webLecture-2021
git branch yourBranchName
git checkout yourBranchName

Before the lecture

Pull the main branch for updates

cd webLecture-2021
git pull origin main

After the lecture

Commit your changes

git add fileYouChanged
git commit -m "add some message here"
git push origin yourBranchName