摘要: Java字符串占位符(commons-text)替换https://blog.csdn.net/varyall/article/details/83651798 org.apache.commons commons-text 1.6 @Testpublic void test4() { String param1 = String.format("hi,%... 阅读全文
posted @ 2019-02-10 18:18 ParamousGIS 阅读(1071) 评论(0) 推荐(0) 编辑
摘要: https://xieye.iteye.com/blog/2433229 本文描述了git冲突的几种常见情况和解决方案,老鸟请直接忽略本文。假设冲突文件是 test/TestCase.php 下面分5种情况讨论。 1、本地不变。 然后远程别人有更新。 git pull 这种最简单,没有冲突,本地工作 阅读全文
posted @ 2019-02-10 18:10 ParamousGIS 阅读(296) 评论(0) 推荐(0) 编辑
摘要: Git 分支管理和冲突解决https://www.cnblogs.com/mengdd/p/3585038.html创建分支 git branch 没有参数,显示本地版本库中所有的本地分支名称。 当前检出分支的前面会有星号。 git branch newname 在当前检出分支上新建分支,名叫newname。 git checkout newname 检出分支,即切换到名叫newname的... 阅读全文
posted @ 2019-02-10 18:01 ParamousGIS 阅读(186) 评论(0) 推荐(0) 编辑
摘要: Git冲突与解决方法https://www.cnblogs.com/gavincoder/p/9071959.htmlhttps://www.liaoxuefeng.com/wiki/0013739516305929606dd18361248578c67b8067c8c017b000/001375840202368c74be33fbd884e71b570f2cc3c0d1dcf0001、git冲突... 阅读全文
posted @ 2019-02-10 17:54 ParamousGIS 阅读(653) 评论(0) 推荐(0) 编辑
摘要: 1.环境变量GIT_HOME D:\GreenSoftware\PortableGit Path %GIT_HOME%\cmd; 2.初始化git config --global user.name "zyx"git config --global user.email zyx@126.com 3. 阅读全文
posted @ 2019-02-10 17:41 ParamousGIS 阅读(184) 评论(0) 推荐(0) 编辑
摘要: git merge git pull时候遇到冲突解决办法git stashhttps://www.cnblogs.com/juandx/p/5362723.html在使用git pull代码时,经常会碰到有冲突的情况,提示如下信息:error: Your local changes to 'c/environ.c' would be overwritten by merge. Aborting.... 阅读全文
posted @ 2019-02-10 17:35 ParamousGIS 阅读(1504) 评论(0) 推荐(0) 编辑