
Git
钢都百炼生
努力奋斗的青年
展开
-
Git-Getting start
开始Git之旅。原创 2011-09-05 12:14:25 · 364 阅读 · 0 评论 -
Git-查看日志
在使用git查看log时比较常用的一些方式总结。在使用git log查看信息时,我们可以看到如下几点信息commit 83b09fbae110014c30c60c0fd6b3d60c7d41d1feAuthor: ****************************************************Date: Fri Feb 24 11:16:07原创 2012-02-24 11:18:54 · 6624 阅读 · 0 评论 -
git--创建补丁--发送邮件
findutils-4.4.2中README-hacking文件中有关于git使用的说明。如何建立补丁文件原创 2014-07-30 09:07:48 · 580 阅读 · 0 评论 -
使用git应用补丁文件
git apply --index file.patch原创 2014-12-29 13:08:05 · 479 阅读 · 0 评论 -
git 更新失败
git pull 失败。提示:error: cannot lock ref 'xxxxxxxx': 'xxxxxxxxx/yyyy' exists; cannot create 'xxxxxxxx'这是因为有些人需要建立某个“父路径”,但是其“子路径”已经存在。 子路径存在说明父路径已经存在,不能重复创建。使用下面的方法移除全部路径信息重新与仓库同步。git gc --prune=nowgit原创 2016-06-12 11:14:20 · 507 阅读 · 0 评论