2015-02-10 65 views
0

如何與git服務器分支如何與git刪除客戶端分公司不要在服務器分支

刪除客戶端分支沒有使用git的分支

+0

的[?從我目前的Git分支刪除本地(未跟蹤)文件]可能重複(http://stackoverflow.com/問題/ 61212 /刪除本地-未跟蹤檔案,從-MY-電流的git分支) – Dhina 2015-02-10 05:39:08

回答

1

刪除分支如果你在談論遠程跟蹤分支(它可以追蹤在遠程端不存在的分支),那麼這將是git remote prune

git remote prune origin --dry-run 

參見:

prune 

刪除<name>下的所有陳舊的遠程跟蹤分支。
這些陳舊的分支已從<name>引用的遠程存儲庫中刪除,但仍在本地可用「remotes/<name>」。

使用--dry-run選項,報告將修剪哪些分支,但不實際修剪它們。

在 「Delete a Git branch both locally and remotely」,這也指出了更多細節:

git fetch origin --prune 
git fetch origin -p # Shorter