随笔分类 -  git

摘要:原因:在使用webstorm开发中,.idea 下的文件workspace.xml总是会在每次修改源代码的时候自动修改,造成每次提交的干扰。 git 下使用.gitignore文件进行忽略文件的配置,gitignore 配置文件用于配置不需要加入版本管理的文件,配置好该文件可以为我们的版本管理带来很大的便利,以下是个人对于配置 .gitignore 的一些心得。 1、window下创建.giti... 阅读全文
posted @ 2016-03-21 00:09 zhanfuShi 阅读(357) 评论(0) 推荐(0)
摘要:git push到远程仓库之后,Contributions的统计失败; git push origin master 原因:没有配置本地git的配置文件中的user.emil 和user.name git config --global user.name "你的github用户名" git config --global user.email emailaddress@qq.com //use... 阅读全文
posted @ 2016-03-18 14:31 zhanfuShi 阅读(310) 评论(0) 推荐(0)