年龄大了,记不住,哈哈哈

git init 

git remote add origin (替换仓库地址)

git pull origin master --allow-unrelated-histories

git add ./pom.xml
git add ./src
git add .(新增全部)

git commit -m "first commit"(提交)
git push -u origin master(推送)

git rm -r -f --cached ./ (删除缓存)