힘내 튜토리얼-무대 파일
Jinku Hu
2020년6월25일
이 학습서에서는 준비 영역에서 파일을 재설정하는 방법을 보여줍니다.
준비 영역에서 파일 스테이지 해제
스테이징 영역에 일부 파일을 추가 한 후이 파일에 대해 더 많은 수정을 수행 할 계획이므로이 변경 사항을 저장소에 커밋하지 않으려는 경우 스테이징에서 파일을 스테이징 해제해야합니다. 지역. git status
를 확인하면 파일 변경은 여전히 스테이징 영역에 있으며 git reset HEAD <file> ...
명령으로 재설정 할 수 있습니다.
작업중인 사본 상태를 확인하지 마십시오.
$ git status
On branch master
Changes to be committed:
(use "git reset HEAD <file>..." to unstage)
renamed: test1_rename.txt -> move/test1.txt
이 이름 변경을 취소하고
$ git reset HEAD
Unstaged changes after reset
D test1_rename.txtgi
작업중인 복사 상태가
$ git status
On branch master
Changes not staged for commit:
(use "git add/rm <file>..." to update what will be committed)
(use "git checkout -- <file>..." to discard changes in working directory)
deleted: test1_rename.txt
Untracked files:
(use "git add <file>..." to include in what will be committed)
move/
no changes added to commit (use "git add" and/or "git commit -a")
이름 바꾸기가 준비되기 전에 상태로 돌아갑니다.
작가: Jinku Hu
Founder of DelftStack.com. Jinku has worked in the robotics and automotive industries for over 8 years. He sharpened his coding skills when he needed to do the automatic testing, data collection from remote servers and report creation from the endurance test. He is from an electrical/electronics engineering background but has expanded his interest to embedded electronics, embedded programming and front-/back-end programming.
LinkedIn Facebook