git建立本地分支和远程分支

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了git建立本地分支和远程分支相关的知识,希望对你有一定的参考价值。

参考技术A git branch // 查看本地分支
git branch -a // 查看所有分支
git branch -r // 查看远程分支
git branch -vv // 查看本地分支与远程分支关联关系
git branch A // 切换本地分支(A:分支名,下同)
git checkout -b // 创建本地分支并切换 (= git branch A + git checkout )
git push origin A:A // 推送本地分支到远程
git branch --set-upstream-to electric origin/electric // 本地分支关联远程分支
git push origin -d A // 删除远程分支 (用本地分支名,前面不加origin)
git branch -d A // 删除本地分支

以上是关于git建立本地分支和远程分支的主要内容,如果未能解决你的问题,请参考以下文章

git 建立本地分支和远程分支关系

git拉取远程分支并创建本地分支

git拉取远程分支到本地(VScode)

git将本地分支与远程分支建立联系

git 本地分支关联远程分支

git 抓取远程分支到本地分支(本地不存在这个分支)