工具
M白鸽
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
git命令
1.命令行中,输入 git init 2.将文件夹中的内容全部添加到git管理中 git add . 3.提交 git commit -m ‘first commit’ 4.连接github仓库 git remote add origin https://github.com/shench5612390/Test.git%E2%80%9D%EF%BC%88git 5.git push -u origin master 项目提交成功 一、核心操作: 1.初始化仓库,.git目录默认隐藏,可以通过命令ls -a原创 2021-12-01 16:26:27 · 179 阅读 · 0 评论 -
IDEA配置热部署
一:添加pom依赖 <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-devtools</artifactId> <scope>runtime</scope> <optional>true</optional> </dependency> 二:添原创 2021-10-21 17:00:12 · 108 阅读 · 0 评论 -
IDEA新建工程环境配置
字符编码 注解激活生效 过滤默认文件 java编译版本原创 2021-10-21 16:26:01 · 116 阅读 · 0 评论
分享