Repository for SWP2 class assignments and code reviews
20160176 ์ก์์ง 20181675 ์ด์คํธ 20185290 ์ดํ์ 20190406 ์ดํ์ง 20191670 ์กฐ๋์ 20170228 ํ์ค์
-
fork this repository to your own github storage ย ย ย ย ย (github)
-
clone from your own storage created by fork to your local storageย ย ย ย ย (git)
-
config remote storage in the cloned storageย ย ย ย ย (git)
-
make a branch for PR(=pull request)ย ย ย ย ย (git)
-
commit & push your assignment code in branch where you made it step4ย ย ย ย ย (git)
-
click 'Compare & pull request' button to approve and merge your proposalย ย ย ย ย (github)
-
delete your PR branchย ย ย ย ย (git)
-
Synchronize your fork storage (=pull or fetch original storage to your storage)ย ย ย ย ย (git)
-
go back to step4
Details of step2
$ git clone https://github.com/leejh123/SWP2_Team6.git
$ git remote -v
origin https://github.com/leejh123/SWP2_Team6.git (fetch)
origin https://github.com/leejh123/SWP2_Team6.git (push)
# url must be your fork repository's url
Details of step3
$ git remote add origin-leejh7 https://github.com/leejh7/SWP2_Team6.git
$ git remote -v
origin https://github.com/leejh123/SWP2_Team6.git (fetch)
origin https://github.com/leejh123/SWP2_Team6.git (push)
--- above: your remote repository's address
--- under: origin remote repository's address
origin-leejh7 https://github.com/leejh7/SWP2_Team6.git (fetch)
origin-leejh7 https://github.com/leejh7/SWP2_Team6.git (push)
# url must be original repository's url
Details of step8
$ git checkout master
$ git pull origin-leejh7
If you need more info leave a message on kakaotalk.
- Github ์ธ๋ถ ์ ์ฅ์ fork, pull request, ๋๊ธฐํ ํ๊ธฐ
- Pull Request ๋ณด๋ด๋ ๋ฐฉ๋ฒ
- ์ํ์ฝ๋ฉ๋์ Visual Studio Code๋ก ๋ค๋ฃจ๋ Git
- ์ํ์ฝ๋ฉ๋์ Github
ex) hw_01.py
# 20160176 ์ก์์ง
'''
์ก์์ง ํ์ฐ๋ถ์ ์ฝ๋ ์์ญ
'''
# 20181675 ์ด์คํธ
'''
์ด์คํธ ํ์ฐ๋ถ์ ์ฝ๋ ์์ญ
'''
# 20185290 ์ดํ์
'''
์ดํ์ ํ์ฐ๋ถ์ ์ฝ๋ ์์ญ
'''
# 20190406 ์ดํ์ง
'''
์ดํ์ง ํ์ฐ๋ถ์ ์ฝ๋ ์์ญ
'''
# 20191670 ์กฐ๋์
'''
์กฐ๋์ ํ์ฐ๋ถ์ ์ฝ๋ ์์ญ
'''
# 20170228 ํ์ค์
'''
ํ์ค์ ํ์ฐ๋ถ์ ์ฝ๋ ์์ญ
'''
Write your code on your own area.
Conflicts of merge can be avoided by not invading other students's code areas.