olivertang40 / chuwa1010

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Chuwa Training

How to record your assignments by using this repo:

Clone this repo:

open your teminal, run below command

cd your_work_dir
git clone https://github.com/TAIsRich/chuwa1010

send your github email address to me by slack. I will add you to this repo

Create your feature branch to implement the assignment.

git branch firstName_lastName/notes
git checkout firstName_lastName/notes

example: 
HW1:
git checkout -b firstName_lastName/hw1
git add .
git commit -m "commit_message"
git push origin firstName_lastName/hw1

write your assignment under this feature branch.

short questions assignments -> shortQuestions directory

coding assignments -> coding directory

How to Raise a PR

working on your homework branch, ie. firstName_lastName/hw1

git push origin firstName_lastName/hw1

then open your github, Compare and Pull or New pull request

to **firstName_lastName/notes** from **firstName_lastName/hw1**

You should always raise your PRs to your own firstName_lastName/notes branch, Please don't raise your PR to main branch

About