파일의 상태 확인하기
$ git status
On branch master

Initial commit

Untracked files:
  (use "git add <file>..." to include in what will be committed)

        README

nothing added to commit but untracked files present (use "git add" to track)


파일을 새로 추적하기
$ git add README
$ git status
On branch master

Initial commit

Changes to be committed:
  (use "git rm --cached <file>..." to unstage)

        new file:   README


변경사항 커밋하기
$ git commit -m "first commit README"
$ git status
On branch master
nothing to commit, working directory clean


변경이력 확인하기
$ git log -p
commit 9adc079b4c8fbf1645c876a27fc6472f2a87da30
Author: Poorman <darkq4@naver.com>
Date:   Tue Jun 28 11:12:29 2016 +0900

    first commit README

diff --git a/README b/README
new file mode 100644
index 0000000..69176b7
--- /dev/null
+++ b/README
@@ -0,0 +1,2 @@
+README
+Git Storage

git를 설치할 때 gitk라는 툴도 동시에 설치됩니다. 이걸 사용하면 변경 이력을 GUI에서 확인할 수 있습니다.
$ gitk


+ Recent posts