新手上路
发布时间:2014-11-21 15:23:37
git log 默认的回显方式是 Date: Mon Oct 20 17:26:23 2014 月份用英文缩写显示,看的不是很习惯。 于是改成了这样: Date: 2014-10-21 14:55:24 +0800 嗯,舒服多了。.........【阅读全文】
发布时间:2014-03-11 18:00:00
Your local changes to the following files would be overwritten by mergeerror: Your local changes to the following files would be overwritten by merge: protected/config/main.phpPlease, commit your changes or stash them before you can merge.参考http://blog.csdn.net/z.........【阅读全文】
发布时间:2014-03-04 16:04:51
原来git远程版本库为aaa,把aaa 克隆到本地经过一段时间的开发后发现远程的版本库变为bbb,执行git pull时提示:在远程上找不到aaa。这时把 .git/config 中的aaa变更为bbb,即可执行 git pull......【阅读全文】
发布时间:2014-02-28 16:20:38
git checkout 是git最常用的命令之一,同时也是很危险的命令,因为它会重写工作区。git checkout [-q] [] [--] commit 是可选项,如果省略则相当于从暂存区进行检出覆盖工作区的文件。git reset重置的默认值是HEAD,而checkout检出的默认值是暂存区。因此重置一般用于重置暂存区(使用--hard参数则重置.........【阅读全文】