1. 安装git windows客户端

  2. 启动bash

  3. # 进入目录
    cd blog

  4. # 添加当前目录的所有文件到暂存区
    git add .

    # 如果报错fatal: not a git repository (or any of the parent directories): .git 

    解决办法: git init

  5. # 提交暂存区到仓库区,并添加说明
    git commit -m "第一次提交"
    # 提交工作区自上次commit之后的变化,直接到仓库区

    git commit -a

  6. # 添加远端服务器GIT地址
    git remote add origin https://github.com/xxx/xxx.git

  7. # 提交到服务器
    git push -u origin master
    提示需要登录,登录完成后等待提交完成

    # 即使有冲突,也强行推送当前分支到远程仓库

    git push https://github.com/xxx/xxx.git --force