将本地项目推到coding.net远程仓库中

coding中创建新项目

首先创建未初始化的新项目。在创建项目时,不要勾选“启用README.md文件初始化项目”。

安装Git以及基本设置

  1. 安装 Git 的Windows版本
  2. 在项目文件夹中“右键”选中“Git Bash Here”,将打开Git Base窗口;
  3. 在Git中配置coding的账号和邮箱
    1
    2
    git config --global user.name "coding账号"
    git config --global user.email "coding邮箱"
  1. 将项目文件夹初始化为Git的本地仓库
    1
    git init # 初始化
  2. 添加文件/文件夹到工作区中:git add [file],并提交到本地仓库:git commit -m "备注内容"
    1
    2
    git add . # 添加当前目录中所有内容到工作区
    git commit -m "test commit" # 提交到本地仓库
  3. 关联远程仓库并推送本地仓库到远程仓库中
    1
    2
    3
    4
    5
    6
    git remote add origin https://git.coding.net/xxx/xxx.git # 关联远程仓库
    # 用于初始化远程仓库(首次将本地仓库推到远程仓库)
    git push -u origin master # 将本地主分支推到远程 (如无远程主分支则创建)
    ##########################################
    # 将本地主分支推到远程主分支(已初始化远程仓库)
    git push origin master # 非首次推送本地主分支到远程仓库
  4. 如果提示:fatal: remote origin already exists,说明在git的config中已经配置了一个远程仓库
    1
    git remote rm origin # 清除配置信息

    再次执行步骤6