美文网首页
将本地代码推新的远程仓库

将本地代码推新的远程仓库

作者: 吃啥呀 | 来源:发表于2019-05-26 18:47 被阅读0次

    git GitHub


    本地项目已经写好了,但是想推到 github 上,肿么办

    1. 在 GitHub 上新建一个仓库

    repository

    2. 本地项目推倒远程仓库

    在终端上进入本地仓库


    terminal.png

    为本地项目创建 git


    image.png
    git init 
    git remote add origin https://github.com/远程仓库地址
    git push -u origin master
    

    发现失败了,因为还没有将本地仓库的东西先 add,add 之后应当提交 commit


    add.png
    commit.png
    git add *
    git commit -m ""
    

    这个时候再 push,push 成功,远程仓库也更新了


    push.png
    Remote repository.png

    相关文章

      网友评论

          本文标题:将本地代码推新的远程仓库

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