美文网首页
第三章:Git与GitHub的简单同步

第三章:Git与GitHub的简单同步

作者: 守住这块热土 | 来源:发表于2018-12-30 20:11 被阅读0次
    4节内容

    30 | 注册一个GitHub账号


    31 | 配置公私钥

    参考官方文档:https://help.github.com/

    Using the SSH protocol, you can connect and authenticate to remote servers and services. With SSH keys, you can connect to GitHub without supplying your username or password at each visit.


    32 | 在GitHub上创建个人仓库

    image.png
    tips
    • Checking for existing SSH keys
    Enter ls -al ~/.ssh to see if existing SSH keys are present:
    
    ls -al ~/.ssh
    # Lists the files in your .ssh directory, if they exist
    

    33 | 把本地仓库同步到GitHub

    • 本地建立remote
      git remote add github git@github.com:Allen1218/git_learnning.git
    • push所有分支
      git push github --all
    • 从远端获取
      git fetch github master
    • merge
      git merge --allow-unrelated-histories github/maste

    git fetch 相当于是从远程获取最新到本地,不会自动merge git pull:相当于是从远程获取最新版本并merge到本地, 在实际使用中,git fetch更安全一些 【参考https://blog.csdn.net/riddle1981/article/details/74938111

    相关文章

      网友评论

          本文标题:第三章:Git与GitHub的简单同步

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