git push origin -delete 分支名称 删除远程分支
git branch -D <branch_name> 删除一个正打开的分支
但是误操作删除了一个远程分支
于是开始补救 先git log -g找到commit id
然后git branch 写个本地分支名称 就是你删的那个本地分支名称
然后push到线上就是你的代码
git push origin -delete 分支名称 删除远程分支
git branch -D <branch_name> 删除一个正打开的分支
但是误操作删除了一个远程分支
于是开始补救 先git log -g找到commit id
然后git branch 写个本地分支名称 就是你删的那个本地分支名称
然后push到线上就是你的代码
本文标题:一次误操作删除了远程分支
本文链接:https://www.haomeiwen.com/subject/bdtxhqtx.html
网友评论