美文网首页
初步学习Git——分布式版本管理系统(3)

初步学习Git——分布式版本管理系统(3)

作者: mint9602 | 来源:发表于2017-02-05 00:22 被阅读4次

    添加远程库

    首先,登陆GitHub,然后,在右上角找到“Create a new repo”按钮,创建一个新的仓库.
    第二步,输入你的远程库的名称,然后就大功告成啦!
    要关联一个远程库,使用命令
    git remote add origin git@server-name:path/repo-name.git;
    关联后,使用命令
    git push -u origin master
    第一次推送master分支的所有内容;

    Administrator@PC-20140823TXAB MINGW64 /c/learngit (master)
    $ git remote add origin git@github.com:mint9602/learngit.git
    
    Administrator@PC-20140823TXAB MINGW64 /c/learngit (master)
    $ git push -u origin master
    Counting objects: 3, done.
    Delta compression using up to 4 threads.
    Compressing objects: 100% (2/2), done.
    Writing objects: 100% (3/3), 264 bytes | 0 bytes/s, done.
    Total 3 (delta 0), reused 0 (delta 0)
    To git@github.com:mint9602/learngit.git
     * [new branch]      master -> master
    Branch master set up to track remote branch master from origin.
    
    Administrator@PC-20140823TXAB MINGW64 /c/learngit (master)
    $
    

    此后,每次本地提交后,只要有必要,就可以使用命令git push origin master推送最新修改;

    分布式版本系统的最大好处之一是在本地工作完全不需要考虑远程库的存在,也就是有没有联网都可以正常工作

    相关文章

      网友评论

          本文标题:初步学习Git——分布式版本管理系统(3)

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