Recent Posts
Recent Comments
HEROJOON 블로그(히로블)
[Git] Git Remote의 특정 Commit Hash값 위치로 되돌리기 본문
반응형
목표
원격 저장소(ex. Github)에 Push를 잘못했을 경우 Commit History에서 해당 내용을 제거하고 싶을 때가 있습니다. 이럴 경우 원하는 Commit HashCode(Commit ID) 시점으로 되돌릴 수 있습니다.
사용할 명령어 정리
# 원하는 Commit HashCode(Commit ID)로 되돌리기
# git reset --hard {Commit HashCode}
git reset --hard 61204e63b3dae72f61712dd994a1da106212c36a
# 위에서 설정한 내용 원격 저장소에 push
# git push origin +{branch}
# 여기서 +는 강제의 의미
git push origin +develop
반응형
'Git' 카테고리의 다른 글
[Git] remote: Repository not found. 해결 (1) | 2022.04.05 |
---|---|
[Git] Support for password authentication was removed on August 13, 2021. Please use a personal access token instead. 해결하기 (0) | 2021.09.16 |
[Git] 원격저장소 branch 제거하기 (0) | 2020.11.23 |
[Git] 원하는 파일만 Commit & Push하기 (2) | 2020.11.02 |
[Git] git config --global 설정 (유저 Name, Email 설정) (0) | 2020.11.02 |
Comments