codecamp

4. Git 检查状态

目的

学习如何检查仓库的状态。

检查仓库的状态

使用 git status 命令检查当前仓库的状态。

$ git status

你应该看到:

$ git status
# On branch master
nothing to commit (working directory clean)

status 命令报告这儿没有什么要提交的。这意味着仓库具有 工作目录的全部当前状态。这儿没有不同的更改要记录。

我们将继续使用 git status 命令来监视仓库和工作目录间的 状态。

3. Git 创建项目
5. 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; }