Git으로 협업하기Organization Repository(원본 레포)를 Fork한다. Fork해온 레포(내 레포)를 Local에 Clone하여 작업한다.이 때, upstream에 원본 레포를 등록해두면 Fetch/Pull을 통해 원본 레포의 변경 사항을 빠르게 받아
전체 파일을 마지막 Commit으로 되돌리기특정 파일에 대한 변경 사항만 되돌리기전체 파일을 Unstage특정 파일만 UnstageCommit을 취소하고 해당 파일들은 Staged 상태로 Working Directory에 보존하기Commit을 취소하고 해당 파일들은 U
Working Directory (Local)↓ Add ↓Index (= Staging Area)↓ Commit ↓Repository↓ Push ↓Remote RepositoryInit : 저장소 생성Add : 파일을 인덱스에 올리기 (= Staging Area)Com