Go to file
jasder 19b3079beb Add file 2021-03-31 16:35:46 +08:00
src/main Add file 2021-03-31 16:35:46 +08:00
.gitignore Add file 2021-03-31 16:35:46 +08:00
.trustie-pipeline.yml Add file 2021-03-31 16:35:46 +08:00
Dockerfile Add file 2021-03-31 16:35:46 +08:00
LICENSE Add file 2021-03-31 16:35:46 +08:00
README.md first commit 2021-03-31 16:35:12 +08:00
deploy.sh Add file 2021-03-31 16:35:46 +08:00
pom.xml Add file 2021-03-31 16:35:46 +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/moshenglv/test.git
git push -u origin master

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

git remote add origin https://git.trustie.net/moshenglv/test.git
git push -u origin master