git提交代码到github

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了git提交代码到github相关的知识,希望对你有一定的参考价值。

  • 安装git windows客户端

  • 启动bash

  • # 进入目录
    cd blog

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

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

    git commit -a

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

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

  • 以上是关于git提交代码到github的主要内容,如果未能解决你的问题,请参考以下文章

    Android Studio如何使用Git提交代码到GitHub和OsChina并解决冲突

    使用Git 本地代码提交到 GitHub

    git提交代码到远程仓库github

    git 提交代码到github错误处理

    IDEA提交代码到github

    撤回提交到 gitlab 上的代码