摘要: 分支操作 查看远程分支 git branch -r 查看本地分支 git branch 拉取远程分支 # 拉取远程某个分支,支持重命名 git checkout -b 本地分支名称 origin/远程分支名称 删除本地分支 git branch -d 本地分支名称 # 强制删除 git branch 阅读全文
posted @ 2023-03-04 22:18 沙里 阅读(15) 评论(0) 推荐(0)