git 작업 한 단계 앞을 되돌리는 방법입니다.
1. git pull 되돌리기 (수행 전 상태로)
git reset --hard ORIG_HEAD
2. git merge 되돌리기 (수행 전 상태로)
git reset --merge ORIG_HEAD
3. git commit 되돌리기 (수행 전 상태로)
git reset --hard HEAD
4. git add 되돌리기 (수행 전 상태로)
git reset HEAD
'Dev > Git & GitHub' 카테고리의 다른 글
[Git] push한 commit message 수정하기 (0) | 2024.02.21 |
---|---|
[에러 해결] fatal: unable to access ~ : error setting certificate file: C:\Program Files\Git\mingw64\ssl\certs\ca-bundle.crt (0) | 2024.01.10 |
git rebase & git stash (0) | 2023.05.25 |
PR (Pull Request) (0) | 2022.08.03 |
Git & GitHub (0) | 2022.08.03 |