查询是否做了修改
git status
初次上传
git init
git add .
git commit -m "first commit"
git remote add origin https://git.coding.net/Tomss/asd.git
git push -u origin master
再次上传
git add .
git commit -m "first commit" (引号里为 标注本次上传做了什么)
git push origin master
克隆下来
git clone https://git.coding.net/Tomss/asd.git
以上地址都是coding项目上的地址
网友评论