git show 커밋ID
![[Git] Git push/pull , clone 와 Commit history 조회하기](https://img1.daumcdn.net/thumb/R750x0/?scode=mtistory2&fname=https%3A%2F%2Fblog.kakaocdn.net%2Fdna%2FANuVn%2Fbtrs4MVCuqb%2FAAAAAAAAAAAAAAAAAAAAANGuxeICEaTDdaXAqpZJ9EACUJRqO-fobZDo66KTDOoa%2Fimg.jpg%3Fcredential%3DyqXZFxpELC7KVnFOS48ylbz2pIh7yKj8%26expires%3D1753973999%26allow_ip%3D%26allow_referer%3D%26signature%3DqSwrCl4jHDrkWvgRxrj4PvzQDFY%253D)
[Git] Git push/pull , clone 와 Commit history 조회하기
Git push/pull git push 로컬 레포지토리의 내용 -> 깃허브의 리모트 레포지토리에 반영 git pull 깃허브의 리모트 레포지토리 -> 로컬 레포지토리의 내용을 가져옴 Git clone Git clone [프로젝트의 GitHub 주소] 깃허브 프로젝트의 레포지토리를 내 컴퓨터로 그대로 복제 Commit history 이때까지한 커밋의 히스토리 git log 커밋 히스토리 조회 git log --pretty=oneline 커밋 히스토리 한줄로 조회 git show git show [커밋 ID 앞의 4글자] 커밋의 수정내용을 알 수 있음