coding1、第一次上传# 打开命令行,cd 到当前项目git add .git commit -m "初次提交" # 给提交写个注释# 将下面的地址换成自己刚复制的git remote add origin https://.......git push -u origin master2、本地修改代码后,执行命令,cd 到当前项目git add .git commit -m "增加了..."git remote add origin https://......git push -u origin master==============================================================================码云1、进入当前项目,创建 git 仓库:git inittouch README.mdgit add README.mdgit commit -m "初次提交"git remote add origin https://........git push -u origin master2、已有项目cd 当前项目git add .git commit -m "增加了..."git remote add origin https://.........git push -u origin master====================================================================================码云创建项目largn进入项目1、初始化 git init2、暂存 git add .3、提交 git commit -m "初次提交" git commit -m "first commit"4、git remote add origin https:.......5、git push -u origin master6、输入用户名 密码提交。7、每次编辑前先同步项目 git pull 修改后提交1、git add .2、git commit -m "first commit"3、提交推送 git push 完事复制代码