문서번호: 20210112_0938 검색어: nabiro, git, add, cancel, restore, 취소, 복구, 삭제 참조 또는 출처: 마지막 업데이트: git add 취소 실습하기 ## 테스트로 gitdir 이름으로 디렉터리 생성 $ mkdir gitdir ## gitdir 디렉터리로 이동 $ cd gitdir ## git 저장소 생성하기 (local) $ git init ## 테스트로 a.txt, b.txt 파일 생성 $ touch a.txt b.txt ## 생성된 파일들이 Untracked 상태인 것을 확인 $ git status Untracked files: (use "git add ..." to include in what will be committed) add1.txt add2.tx..