首页 > 代码库 > git 检查是否有commit到本地但还没push的代码
git 检查是否有commit到本地但还没push的代码
使用
git status
命令可以得到以下结果
$ git status
On branch dev_getTicketCnt
Your branch is ahead of ‘origin/master‘ by 1 commit.
(use "git push" to publish your local commits)
nothing to commit, working directory clean
这就表示本地库还有没push的内容
如果是以下结果,就表示本地全部都push了,同时表示本地还不是最新的,提示那里都提示你要去远程拿代码合并了
$ git status
On branch dev_activit_grabTicket
Your branch and ‘origin/master‘ have diverged,
and have 1 and 4 different commits each, respectively.
(use "git pull" to merge the remote branch into yours)
nothing to commit, working directory clean
总结:其实git的每条命令之后都有很多提示的,从中可以学到很多其他操作
来自为知笔记(Wiz)
git 检查是否有commit到本地但还没push的代码
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。