반응형
1. Git Diff
: 작업트리에 있는 파일과 스테이지에 있는 파일을 비교
스테이지에 있는 파일과 저장소에 있는 최신 커밋을 비교해서 수정한 파일을 커밋하기 전에 검토
2.
$ vim hello.txt
$ git status
$ git diff
warning: LF will be replaced by CRLF in hello.txt.
The file will have its original line endings in your working directory
diff --git a/hello.txt b/hello.txt
index 1191247..0b66db0 100644
--- a/hello.txt
+++ b/hello.txt
@@ -1,2 +1,2 @@
1
-2
+two
3. 최신버전과 비교하여 달라진 곳
- 2 ( 2가 삭제됨 )
+ two ( two가 추가됨 )
반응형
'Python_Beginer > GIT' 카테고리의 다른 글
[GIT]Unmodified, Modified, Staged(비수정상태 / 수정상태 / 커밋 직전 상태) (0) | 2020.01.03 |
---|---|
[GIT]Tracked File / Untracked File(추적상태 / 비추적상태) (0) | 2020.01.03 |
[GIT]Git Log(커밋 기록 확인) (0) | 2020.01.03 |
[GIT]Staging + Commit(스테이징 + 커밋) (0) | 2020.01.02 |
[GIT]Repository(저장소) (0) | 2020.01.02 |