為了要更好地控制檔案的版本,所以需要在檔案目錄裡新增 git 的功能,首先需要 init,初始化 git。
git init
rm -r .git
git status
On branch master
No commits yet
nothing to commit (create/copy files and use "git add" to track)
在 git 裡,有被加入版本控制的檔案,檔案狀態會變成 stage,才會被追蹤檔案是否有變動,加入檔案語法:git add code.js
加入所有檔案:git add .
➜ git:(master) ✗ git status
On branch master
No commits yet
Changes to be committed:
(use "git rm --cached <file>..." to unstage)
new file: code.js
new file: rock.txt
如果想要取消追蹤檔案,使檔案狀態變成 unstage,就可以使用 :git rm --cached code.js
git commit -m "first commit"
commit 出去之後代表已經建立一個新的 Git版本了,會存在 git log 裡面,可以查看歷史新建紀錄
git commit -am