codecamp

5. Git 做更改

目的

学习如何监视工作目录的状态。

更改“Hello, World”程序

是时候更改我们的 hello 程序以便使它能从命令行传递参数。将 文件更改为:

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

检查状态

现在检查工作目录的状态。

$ 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 还没有通知这些更改。

另外要注意的是状态信息给你接下来需要做什么的提示。如 果你想要添加这些更改到仓库,那么使用 git add 命令。 否则,使用 git checkout 命令放弃更改。

下一步

让我们暂存更改。

4. Git 检查状态
6. Git 暂存更改
温馨提示
下载编程狮App,免费阅读超1000+编程语言教程
取消
确定
目录

关闭

MIP.setData({ 'pageTheme' : getCookie('pageTheme') || {'day':true, 'night':false}, 'pageFontSize' : getCookie('pageFontSize') || 20 }); MIP.watch('pageTheme', function(newValue){ setCookie('pageTheme', JSON.stringify(newValue)) }); MIP.watch('pageFontSize', function(newValue){ setCookie('pageFontSize', newValue) }); function setCookie(name, value){ var days = 1; var exp = new Date(); exp.setTime(exp.getTime() + days*24*60*60*1000); document.cookie = name + '=' + value + ';expires=' + exp.toUTCString(); } function getCookie(name){ var reg = new RegExp('(^| )' + name + '=([^;]*)(;|$)'); return document.cookie.match(reg) ? JSON.parse(document.cookie.match(reg)[2]) : null; }