09:00 ~ 11:30 팀과제 & 개인공부
11:30 ~ 12:00 CS스터디
12:00 ~ 13:00 점심시간
13:00 ~ 14:00 개인공부
14:00 ~ 16:00 팀원들과 깃허브 pull & push 해보기
16:00 ~ 18:00 협업을 위한 github 다시 공부
18:00 ~ 19:00 저녁식사
19:00 ~ 19:30 JS스터디 준비
19:30 ~ 21:00 Recap 라이브 세션
21:00 ~ 22:30 야자반 스터디
22:30 ~ 23:00 JS스터디
23:00 ~ 00:00 Recap 라이브 세션 복습
00:00 ~ 00:30 휴식
00:30 ~ 03:30 개인공부
// log로 시작하는 파일을 git이나 github에 추가하고 싶지 않다면,
ech *.log > .gitignore
git config --global user.name "your_name"
git config --global user.email "your_email"
git config --list
git init
git add .
git status
git commit -m "first commit"
git remote add origin https://github.com/hahbr88/myTodo.git
git remote -v
git push origin master
git add .
git commit -m "first commit"
git push origin master
git clone 주소(https://github.com/hahbr88/myTodo.git) 폴더이름
git checkout -b branch이름
git add .
git commit -m "first commit"
git push origin branch이름
git pull origin master
git checkout branch_name
git add .
git commit -m "my_todo commit"
git checkout -b feature/bumsu
git push origin feature/bumsu
git add .
git commt -m "second commit"
git pull origin master
git checkout feature/bumsu
git push orgin feature/bumsu
Reference
Git 명령어 총 정리집 (by 코딩알려주는 누나)
https://hackmd.io/@oW_dDxdsRoSpl0M64Tfg2g/ByfwpNJ-K