공지사항

ASAP Github

yunwon 2021. 9. 30. 10:40

 

 

 

Git 동작흐름

 

특정 버전 Clone 하기

(1) 프로젝트 다운로드

# git clone <repo url>

(2) clone 한 경로로 이동하여 commit log 확인

# cd <project name>
# git log

(3) 해당 commit id 로 reset

# git reset --hard <commit id>