git 繁难入门教程
Git 全局设置:git config --global user.name "464164213"git config --global user.email "464164213@qq.com"创立 git 仓库:mkdir springboot-pmpcd springboot-pmpgit inittouch README.mdgit add README.mdgit commit -m "first commit"git remote add origin https://gitee.com/464164213/springboot-pmp.gitgit push -u origin master已有仓库?cd existing_git_repogit remote add origin https://gitee.com/464164213/springboot-pmp.gitgit push -u origin master
idea热部署配置
https://www.javazhiyin.com/32982.html