git可以使用
git status
来查看那些文件没有提交 commit,但是如何查看哪些文件没有提交push到远程?
大家讲道理2017-04-25 09:06:05
推荐你用Source Tree,对Git整个分布式流程一目了然,同时也能解决题主在本题中的要求。
Atlassian出的敏捷开发工具异常好用,Source Tree是代表作之一。
迷茫2017-04-25 09:06:05
git status 里不是有嘛:
> git status
On branch refactor
Your branch is ahead of 'origin/refactor' by 1 commit.
(use "git push" to publish your local commits)
nothing to commit, working directory clean
世界只因有你2017-04-25 09:06:05
「哪些文件没有提交push到远程」——git status 说明哪些文件没有提交。要看哪些提交在远程不存在,可以试试这个命令,看哪些提交在哪些分支上有(而另外的分支上没有):
git show-branch -a --color=always