码云使用的基本步骤

  1. 创建仓库

    然后把工程的信息填写一下

  2. 远程拉取项目

    git clone xxxx.git

  3. 谁修改的

    git config --global user.name "xxx"

  4. 码云账号

    git config --global user.emali "xx@xx.com"

  5. 添加到仓库(git add xxx 提交单个文件)

    git add .

  6. 解释提交代码

    git commit -m '内容'

  7. 提交到码云

    git push origin master

原文地址:https://www.cnblogs.com/dashanboke/p/11649321.html