codecamp

6. Git 暂存更改

目的

学习如何暂存更改以用于稍后提交。

添加更改

现在告诉 Git 暂存更改,并检查状态。

$ git add hello.rb
$ git status

你应该看到:

$ git add hello.rb
$ git status
# On branch master
# Changes to be committed:
#   (use "git reset HEAD <file>..." to unstage)
#
#   modified:   hello.rb
#

对 hello.rb 文件的更改已被暂存。这意味着 Git 现在知道这些 更改,但还没有永久记录到仓库中。下面的提交操作将包括暂存的 更改。

如果你决定不提交更改,那么 status 命令将提醒你使用 git reset 命令能取消暂存更改。

5. Git 做更改
7. 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; }