Git 로컬 수정 취소

1557 단어 git

문제 설명


파일 example_test.go, 언제 수정되었는지 모르겠습니다. 새 버전을 가져올 때 오류가 발생했습니다.

오류 알림


수정을 제출하거나 합병 전에 잠시 저장할 것을 요구합니다.
error: Your local changes to the following files would be overwritten by merge:
	stack_test.go
Please commit your changes or stash them before you merge.
Aborting

자체 수정은 의미가 없기 때문에 수정을 포기하려고 합니다.제출도 안 하고 예금도 안 하고.

현재 파일 상태 보기


git가 힌트를 줬어요. 예판이 정확해요. , !
$ git status
Changes not staged for commit:
  (use "git add ..." to update what will be committed)
  (use "git checkout -- ..." to discard changes in working directory)

        modified:   example_test.go
        modified:   stack_test.go

no changes added to commit (use "git add" and/or "git commit -a")

로컬 수정 취소


두 파일의 수정을 직접 포기하다.
git checkout -- example_test.go
git checkout -- stack_test.go

다시 끌어당기기 성공

좋은 웹페이지 즐겨찾기