在你的
現在你有了一個
打開一個文字編輯器。現在開始寫幾行文字,說聲嗨之類的,並將檔案儲存為 readme.txt
到你在上個挑戰中所建立的 'hello-world' 資料夾。
接著檢查你的
$ git status
接著將剛剛建立檔案,
$ git add readme.txt
最後,將那些修改
$ git commit -m "<your commit message>"
現在在多寫一行文字到 readme.txt
之中並存檔。
在終端機裡你可以查看有那些
$ git diff
利用你剛剛所學到的知識,
git-it verify
git-it
$ git status
$ git diff
$ git add <FILENAME>
$ git add .
$ git commit -m "<your commit message>"