美文网首页
从远端拉取分支到本地

从远端拉取分支到本地

作者: _哈哈哈哈哈哈 | 来源:发表于2020-12-16 23:51 被阅读0次

    ➜ TinyHours git:(master) git status

    On branch master

    Your branch is up to date with 'origin/master'.

    nothing to commit, working tree clean

    ➜  TinyHours git:(master) git pull

    Already up to date.

    Current branch master is up to date.

    ➜  TinyHours git:(master) git status

    On branch master

    Your branch is up to date with 'origin/master'.

    nothing to commit, working tree clean

    ➜  TinyHours git:(master) cd

    ➜  ~ cd /Users/ahs

    ➜  ~ git clone http://code.aihuishou.com/zhuwenqi/TinyHours.git

    Cloning into 'TinyHours'...

    remote: Enumerating objects: 433, done.

    remote: Counting objects: 100% (433/433), done.

    remote: Compressing objects: 100% (210/210), done.

    remote: Total 433 (delta 278), reused 342 (delta 213), pack-reused 0

    Receiving objects: 100% (433/433), 57.61 KiB | 19.00 KiB/s, done.

    Resolving deltas: 100% (278/278), done.

    ➜  ~ cd /Users/ahs/TinyHours

    ➜  TinyHours git:(master)

    相关文章

      网友评论

          本文标题:从远端拉取分支到本地

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