git分支重新命名 & 刪除tag & 刪除遠端分支後本地依然存在的解決辦法
阿新 • • 發佈:2019-02-07
重新命名git本地分支
Git branch -m old_local_branch_name new_local_branch_name
重新命名git遠端分支
Step1:重新命名遠端分支對應的本地分支
git branch -m old_local_branch_name new_local_branch_name
step2:刪除遠端分支
git push origin :old_local_branch_name
step3:重新推送新命名的本地分支
git push origin new_local_branch_name
刪除tag
Step1: 顯示本地tag
git tag
mytag
Step2: 刪除本地tag
git tag -d mytag
Step3: 刪除遠端tag
git push origin :refs/tags/mytag
遠端分支刪除以後,本地顯示仍然存在的解決辦法
顯示所有分支:
git branch -a
執行下面命令檢視遠端分支和本地分支的對應關係:
git remote show origin
會看到:
refs/remotes/origin/my_branch stale (use 'git remote prune' to remove)
執行下面命令同步刪除:
git remote prune origin
或者
git fetch -p
再檢視,就已經沒有了:
git remote show origin