2021-07-16

本文参考文章

tterminator. CSDN. git拉取远程分支并创建本地分支.
tterminator. CSDN. Git branch upstream.

新建本地分支
$ git branch new_branchname
新建本地分支并切换过去
$ git branch new_branchname
$ git checkout new_branchname

或者

$ git check -b new_branchname
拉取远程分支用以创建本地分支并切换过去(操作结束后就映射好了)
$ git fetch origin new_branchname_remote:new_branchname_local
$ git checkout new_branchname_local

或者

$ git checkout -b new_branchname_local origin/new_branchname_remote
建立当前分支与远程分支的映射关系(在没有映射好的前提下)
$ git checkout branchname_local            # 切换到本地 branchname_local 分支
$ git branch -u origin/branchname_remote   # 将本地 branchname_local 分支和远程 branchname_remote 关联到一起

或者
$ git checkout branchname_local  # 切换到本地 branchname_local 分支
$ git branch --set-upstream-to origin/branchname_remote  # 将本地 branchname_local 分支和远程 branchname_remote 关联到一起
撤销本地分支与远程分支的映射关系
$ git checkout branchname_local  # 切换到本地 branchname_local 分支
$ git branch --unset-upstream    # 撤销本地 branchname_local 分支和远程 branchname_remote 分支的映射关系
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值