上一页 1 ··· 13 14 15 16 17 18 19 20 21 ··· 38 下一页
摘要: 我向远程仓库提交了如下文件 src/ pom.xml target/ WebContent/, 发现没必要提交target目录。 于是做了如下操作: git rm -r --cached target git commit -m "delete target/" git push origin ma 阅读全文
posted @ 2020-05-27 13:54 xidianzxm 阅读(723) 评论(0) 推荐(0) 编辑
摘要: #1、代码结构 #2、整体 pom.xml <?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLS 阅读全文
posted @ 2020-05-27 11:38 xidianzxm 阅读(236) 评论(0) 推荐(0) 编辑
摘要: #1、代码结构 #2、整体pom.xml <?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSc 阅读全文
posted @ 2020-05-26 15:36 xidianzxm 阅读(285) 评论(0) 推荐(0) 编辑
摘要: 在git仓库中新建了一个仓库,想要把本地的项目传上去 在项目中: git init git add . git commit "提交说明" 连接远程主机: git remote add origin 远程仓库地址 push到远程仓库: git push origin master MacBook-P 阅读全文
posted @ 2020-05-26 15:20 xidianzxm 阅读(2412) 评论(0) 推荐(0) 编辑
摘要: GIT RM -R --CACHED解决已提交的文件在.GITIGNORE中加入忽略后无效的问题。 有时候,发现有不该提交的文件已经提交后,仅仅在.gitignore中加入忽略是不行的。这个时候需要执行: git rm -r --cached 文件/文件夹名字 去掉已经托管的文件,然后重新提交: g 阅读全文
posted @ 2020-05-26 15:03 xidianzxm 阅读(425) 评论(0) 推荐(0) 编辑
摘要: 什么是 rebase? git rebase 你其实可以把它理解成是“重新设置基线”,将你的当前分支重新设置开始点。 这个时候才能知道你当前分支于你需要比较的分支之间的差异。 原理很简单: rebase需要基于一个分支来设置你当前的分支的基线,这基线就是当前分支的开始时间轴向后移动到最新的跟踪分支的 阅读全文
posted @ 2020-05-25 14:58 xidianzxm 阅读(798) 评论(0) 推荐(0) 编辑
摘要: 本地创建git仓库 git切换版本 git创建分支 合并分支 解决分支合并冲突 阅读全文
posted @ 2020-05-23 11:22 xidianzxm 阅读(168) 评论(0) 推荐(0) 编辑
摘要: %MAVEN_HOME%/conf/settings文件 配置aliyun镜像 更改idea默认配置 阅读全文
posted @ 2020-05-23 09:47 xidianzxm 阅读(100) 评论(0) 推荐(0) 编辑
摘要: ![](https://img2020.cnblogs.com/blog/1220447/202005/1220447-20200522152748206-27767828.png)![](https://img2020.cnblogs.com/blog/1220447/202005/1220447-20200522153106617-1234307726.png)![](https://img2... 阅读全文
posted @ 2020-05-22 15:28 xidianzxm 阅读(138) 评论(0) 推荐(0) 编辑
摘要: (5,2)窗口为5,滑动步长为2 Time Window 阅读全文
posted @ 2020-05-20 20:01 xidianzxm 阅读(176) 评论(0) 推荐(0) 编辑
上一页 1 ··· 13 14 15 16 17 18 19 20 21 ··· 38 下一页