美文网首页
将本地代码提交到github

将本地代码提交到github

作者: 小飞侠在吗 | 来源:发表于2016-12-05 11:01 被阅读0次

    1、初始化仓库  

    git init

    2、把文件添加进去,把文件修改添加到暂存区

    git add README.md

    3、查询状态

    git status

    4、提交更改,把暂存区的所有内容提交到当前分支

    git commit -m "first commit"

    5、本地仓库与远程库关联 (注:  https://github.com/WLIN534/123.git 是指自己的远程库地址)

    git remote add origin https://github.com/WLIN534/123.git

    6、把本地库的所有内容推送到远程库

    git push -u origin master

    相关文章

      网友评论

          本文标题:将本地代码提交到github

          本文链接:https://www.haomeiwen.com/subject/eoisettx.html