Fork
-Remote에 있는 다른 Repository에서 Fork를 해서 Remote에 있는 내 Repository에 가지고 오기
-우측 상단 Fork 클릭 > 나의 유저네임 클릭
Clone
-해당 Repository를 내 컴퓨터(Local Repository)로 가져오기
-git clone <레파지토리 주소>
Status
-내 로컬의 staging area, untracked files 목록 확인
-git status
Restore
-commit 되지 않은 Local Repository의 변경사항을 취소
-git restore
Add
-Untracked files를 Staging area로 추가, commit 할 수 있는 상태로 만들기
-git add <파일명> / git add . (모든 파일 add)
Commit
-변경사항 저장하기
-git commit -m '커밋메세지'
Reset
-아직 Remote Repository에 올라가지 않은 commit 이면 reset 명령어로 취소 가능
-git reset HEAD^
Push
-내 Local Repository의 commit 기록들을 Remote Repository에 업로드
-git push origin master
git log
-현재까지 commit 된 로그들을 터미널 창에서 확인
-터미널 창 종료 : q 입력
Pull Request(PR)
-내가 Remote Repository에 Push 해 놓은 변경 사항에 대해 함께 작업하는 다른 사람들에게 알리기
-GitHub 웹사이트 상의 해당 Remote Repository에 Compare & Pull request 버튼
-Push 내용 요약해서 알려주기