- 创建仓库
然后把工程的信息填写一下
- 远程拉取项目
git clone xxxx.git
- 谁修改的
git config --global user.name "xxx"
- 码云账号
git config --global user.emali "[email protected]"
- 添加到仓库(git add xxx 提交单个文件)
git add .
- 解释提交代码
git commit -m ‘内容‘
- 提交到码云
git push origin master
原文地址:https://www.cnblogs.com/dashanboke/p/11649321.html
时间: 2024-10-14 06:18:54