我有一個項目叫專案。它有3個分支機構:分支1,分支2和掌握。
我手動編輯了一個文件分支2(直接在網路介面上表示:我知道這不是一個好的做法)
一切都好。但現在每當我登入網路介面時,我都會看到分支2在項目內部和作為獨立項目顯示。
這意味著我看到:
project-branch2 // Notice how its name is displayed
project // branch2 is listed among the branches here
我怎麼刪除專案分支2從網頁介面無需刪除分支2從專案?
答案1
聽起來它剛剛分叉了你的專案。您也許可以刪除它,而不會影響原始項目。您通常可以在專案特定設定中執行此操作。
您可能想透過以下方式驗證這一點
git fetch --all #update
git branch -a #list all branches
如果您將project-branch2視為分支:
git push origin --delete origin/project-branch2