반응형
$ ls -la
$ git status
$ vim hello2.txt
$ git stauts
$ git add hello2.txt
$ git status
$ git commit -m "delete b,c,d"
$ git status
$ git commit --amend
$ git status
1. Unmodified
: 수정되지 않은 상태
nothing to commit, working tree clean
2. Modified
: 수정된 상태
modified: hello2.txt
3. Staged
: 커밋 직전 단계
Changes to be committed:
4. git commit --amend
: 커밋 메시지 수정
반응형
'Python_Beginer > GIT' 카테고리의 다른 글
[GIT]Git Reset HEAD(스테이징을 취소) (0) | 2020.01.04 |
---|---|
[GIT]Git Checkout(작업트리 수정 파일 취소) (0) | 2020.01.04 |
[GIT]Tracked File / Untracked File(추적상태 / 비추적상태) (0) | 2020.01.03 |
[GIT]Git Diff(변경 사항 확인) (0) | 2020.01.03 |
[GIT]Git Log(커밋 기록 확인) (0) | 2020.01.03 |