git push时提示Every up-to-date

作者: wencst 分类: linux,Uncategorized,windows 发布时间: 2017-01-11 16:53 阅读: 5,193 次

查看已commit未push的内容(统计个数):
git status

查看已commit未push的内容(展现具体内容):
git cherry -v

查看提交日志:
git log

第一次在 Google Code 上弄项目,注册完毕后,
尝试增加一个新文件用以测试 git是否好好工作。
结果在 Push 时却显示 Every up-to-date,检查文件时却发现实际上一个都没更新上去。

因为对 Git 不够熟悉,因此只好 Googling,进行一番搜索后找到原因如下:

Why does Git refuse to push, saying “everything up to date”?
git push with no additional arguments only pushes branches that exist in the remote already.
If the remote repository is empty, nothing will be pushed.
In this case, explicitly specify a branch to push, e.g. git push master.

也就是说一开始 git 服务器仓库是完全空的,
不包含任何一个分支(branch),因此刚开始 Push 时需要指定一个。
执行 git remote -v 后看到自己的 remote 端名字为 origin:

$ git remote -v
origin  https://code.google.com/p/micolog2 (fetch)
origin  https://code.google.com/p/micolog2 (push)

执行 git branch 后看到自己当下用的分支是 master:

$ git branch
* master

因此在本地 commit 后,再执行 git push origin master 即可。

 

转自:http://blog.csdn.net/g1036583997/article/details/50532651

如果文章对您有用,扫一下支付宝的红包,不胜感激!

欢迎加入QQ群进行技术交流:656897351(各种技术、招聘、兼职、培训欢迎加入)