git中几天前漫不经心的使用了git checkout ver_hash的命令,结果push到远程库都提示everything is up-to-date,实际神马都没提交上去啊!但看本地log中的确有更新哦!后来用再做git st命令时发现老有一行红字:
HEAD detached from 548a7fa
研究了一下发现当前貌似生成了一个临时的br:
* (detached from 548a7fa) b7451ea v0.8 重新导入了真实的题库
master 548a7fa v0.6 加入分页功能
每次本猫都是git push origin master当然没法更新啊,因为master是和远程库一致的,只不过是旧的。
知道原因后解决就很简单鸟,直接用git checkout master切回master br吧,然后别忘了用
git reset –hard b7451
命令切到最新的hash啊。
GitHub 教程系列文章:
GitHub 使用教程图文详解 http://www.linuxidc.com/Linux/2014-09/106230.htm
Git 标签管理详解 http://www.linuxidc.com/Linux/2014-09/106231.htm
Git 分支管理详解 http://www.linuxidc.com/Linux/2014-09/106232.htm
Git 远程仓库详解 http://www.linuxidc.com/Linux/2014-09/106233.htm
Git 本地仓库(Repository)详解 http://www.linuxidc.com/Linux/2014-09/106234.htm
Git 服务器搭建与客户端安装 http://www.linuxidc.com/Linux/2014-05/101830.htm
Git 概述 http://www.linuxidc.com/Linux/2014-05/101829.htm
分享实用的GitHub 使用教程 http://www.linuxidc.com/Linux/2014-04/100556.htm
本文永久更新链接地址:http://www.linuxidc.com/Linux/2015-01/112449.htm