5. Git 做更改

2018-08-04 14:14 更新

目的

學習如何監(jiān)視工作目錄的狀態(tài)。

更改“Hello, World”程序

是時候更改我們的 hello 程序以便使它能從命令行傳遞參數(shù)。將 文件更改為:

puts "Hello, #{ARGV.first}!"

檢查狀態(tài)

現(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 命令放棄更改。

下一步

讓我們暫存更改。

以上內容是否對您有幫助:
在線筆記
App下載
App下載

掃描二維碼

下載編程獅App

公眾號
微信公眾號

編程獅公眾號