W3Cschool
恭喜您成為首批注冊用戶
獲得88經(jīng)驗值獎勵
學習如何監(jiān)視工作目錄的狀態(tài)。
是時候更改我們的 hello 程序以便使它能從命令行傳遞參數(shù)。將 文件更改為:
puts "Hello, #{ARGV.first}!"
現(xiàn)在檢查工作目錄的狀態(tài)。
$ git status
你應該看到:
$ git status
# On branch master
# Changes not staged for commit:
# (use "git add <file>..." to update what will be committed)
# (use "git checkout -- <file>..." to discard changes in working directory)
#
# modified: hello.rb
#
no changes added to commit (use "git add" and/or "git commit -a")
值得注意的第一件事是 Git 知道 hello.rb 文件已被修改,但 Git 還沒有通知這些更改。
另外要注意的是狀態(tài)信息給你接下來需要做什么的提示。如 果你想要添加這些更改到倉庫,那么使用 git add
命令。 否則,使用 git checkout
命令放棄更改。
讓我們暫存更改。
Copyright©2021 w3cschool編程獅|閩ICP備15016281號-3|閩公網(wǎng)安備35020302033924號
違法和不良信息舉報電話:173-0602-2364|舉報郵箱:jubao@eeedong.com
掃描二維碼
下載編程獅App
編程獅公眾號
聯(lián)系方式:
更多建議: