随笔分类 -  git

摘要:error: The requested URL returned error: 401 Unauthorized while accessing https://git.oschina.net/....... 解决方法: 安装git时yum默认安装的是1.7.1,想到很多Git服务依赖... 阅读全文
posted @ 2016-01-13 14:15 hello大雄 阅读(901) 评论(0) 推荐(0)
摘要:提交之前使用git status可以看到将要提交的文件,如果想部分提交,需要单独commit。使用下面这句可以快速commitgit commit `git status | grep 'mod' | awk '{print $3}' | grep -v 'index'`git commit 后面跟... 阅读全文
posted @ 2015-12-19 10:07 hello大雄 阅读(417) 评论(0) 推荐(0)