Go to file
yeqiang 8ad83e1ec5 调整为web项目 2021-03-23 13:51:38 +08:00
src 调整为web项目 2021-03-23 13:51:38 +08:00
.gitignore 忽略logs目录 2020-11-30 13:42:03 +08:00
Dockerfile 同步内容 2020-11-24 10:40:57 +08:00
LICENSE Initial commit 2020-11-24 10:39:44 +08:00
README.md Initial commit 2020-11-24 10:39:44 +08:00
mvnw 同步内容 2020-11-24 10:40:57 +08:00
mvnw.cmd 同步内容 2020-11-24 10:40:57 +08:00
pom.xml 调整为web项目 2021-03-23 13:51:38 +08:00

README.md

从命令行创建一个新的仓库

touch README.md
git init
git add README.md
git commit -m "first commit"
git remote add origin https://git.trustie.net/hknaruto/spring-demo.git
git push -u origin master

从命令行推送已经创建的仓库

git remote add origin https://git.trustie.net/hknaruto/spring-demo.git
git push -u origin master