git拉取远程分支到本地与推送分支到远程

  1. 查看远程分支 git branch -r
  2. 拉取远程分支并创建本地分支 git checkout -b 本地分支名x origin/远程分支名x
    使用该方式会在本地新建分支x,并自动切换到该本地分支x
    方式二 git fetch origin 远程分支名x:本地分支名x
  3. 远程先开好分支然后拉到本地 git checkout -b feature-branch origin/feature-branch //检出远程的feature-branch分支到本地
  4. 本地先开好分支然后推送到远程 gitcheckoutbfeaturebranch//featurebranch g i t c h e c k o u t − b f e a t u r e − b r a n c h / / 创 建 并 切 换 到 分 支 f e a t u r e − b r a n c h git push origin feature-branch:feature-branch //推送本地的feature-branch(冒号前面的)分支到远程origin的feature-branch(冒号后面的)分支(没有会自动创建)

你可能感兴趣的:(git拉取远程分支到本地与推送分支到远程)