git 首次提交

git init
# 将本地仓库与码云远程仓库进行关联 git remote add origin git的url地址 git add . git commit -m
"描述" # git push # 强制提交 git push -u origin master -f

 非首次提交

git add .
git commit -m "描述"
git push
原文地址:https://www.cnblogs.com/rchao/p/11242963.html