使用git push时,提示up-to-date

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了使用git push时,提示up-to-date相关的知识,希望对你有一定的参考价值。

参考技术A 第一次在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:

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

-------------------2019-01-01---------------
其实只要查看一下你本地工作区中是否有修改的文件,可以通过一系列add, commit , push 操作进行提交。

以上是关于使用git push时,提示up-to-date的主要内容,如果未能解决你的问题,请参考以下文章

git push 登录失败

linux服务器git pull/push时提示输入账号密码之免除设置

linux服务器git pull/push时提示输入账号密码之免除设置

Git 2.x 中git push时遇到 push.default 警告的解决方法

git push 提示 Everything up-to-date

git push失败