zoukankan      html  css  js  c++  java
  • git 创建分支并关联远程分支

    从master分支,重新拉取出一个新的分支,名字为dev,具体命令如下:


    1. 切换到被copy的分支(master),从服务器拉取最新版本

    $git checkout master

    $git pull
     

    2. 从当前分支copy出新的开发分支 命名dev分支

    $git checkout -b dev

    Switched to a new branch 'dev'


    3. 把新建的分支push到远端

    $git push origin dev


    4. 拉取远端分支

    $git pull

    There is no tracking information for the current branch.
    Please specify which branch you want to merge with.
    See git-pull(1) for details.
    git pull <remote> <branch>
    If you wish to set tracking information for this branch you can do so with:
    git branch --set-upstream-to=origin/<branch> dev

    pull时发现,当前的分支并没有和本地分支关联,根据提示进行下一步:

    5. 关联

    $git branch --set-upstream-to=origin/dev
     

    6. 再次拉取 验证

    $git pull

  • 相关阅读:
    echo
    shell
    grub
    find
    脚本案例
    dd if= of= MBR
    cat <<EOF> file
    fieldset——一个不常用的HTML标签
    闪烁图片
    跑马灯效果
  • 原文地址:https://www.cnblogs.com/ampl/p/11000042.html
Copyright © 2011-2022 走看看