摘要: 1.查看分支 git branch 2.checkout出代码到分支test git checkout -b test 3.添加到缓存 git add . 4.添加到本地库 git commit -m 'test commit !' 5.提交远程git git push origin test 大功 阅读全文
posted @ 2019-04-25 11:38 祖国的花朵-残花 阅读(1519) 评论(1) 推荐(1) 编辑
摘要: 需求:将develop合并到master分支 1.查看当前分支(当前分支可以直接查看或者命令查看) git branch或者命令git status *代表当前分支 2.切换分支到master git checkout mater 3.将代码更新到最新版本 git pull 4.在master分支上 阅读全文
posted @ 2019-04-25 11:26 祖国的花朵-残花 阅读(13508) 评论(0) 推荐(1) 编辑
摘要: 阿里连接池得配置 1.1创建配置文件activiti_druid.cfg.xml 1.2配置内容 阅读全文
posted @ 2019-04-15 10:40 祖国的花朵-残花 阅读(1395) 评论(0) 推荐(1) 编辑
摘要: 方法一 1.添加pom配置文件 方法二: 直接运行命令:mvn clean package -Dmaven.test.skip=true 阅读全文
posted @ 2019-04-12 09:43 祖国的花朵-残花 阅读(39117) 评论(3) 推荐(2) 编辑