码云使用基本步骤

358 阅读1分钟
  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

提示:拉取远程代码(push前现pull一下代码) #### git pull origin master