美文网首页
将代码跟Github同步

将代码跟Github同步

作者: 钟德明 | 来源:发表于2016-06-23 12:15 被阅读34次

    现在Github上创建项目

    Paste_Image.png

    第一种方法

    提交代码

    提交在本地修改后
    git add <file>
    git commit -m '提交记录'
    git push -u origin master

    下载代码

    git pull prigin master

    克隆代码

    git clone git@github.com:comfish/xxxx.git
    这样就把代码下载下来了

    整体可参考:
    http://www.liaoxuefeng.com/wiki/0013739516305929606dd18361248578c67b8067c8c017b000

    相关文章

      网友评论

          本文标题:将代码跟Github同步

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