1. 程式人生 > >git 刪除分支檔案 刪除分支

git 刪除分支檔案 刪除分支

長話短說 一、刪除分支檔案

1、刪除暫存區或分支上的檔案, 同時刪除工作區相應檔案

git rm file_name
git commit -m "del file"
git push origin your_branch

2、刪除暫存區或分支上的檔案, 但保留工作區相應檔案

git rm --cached file_name
git commit -m "del remote file"
git push origin your_branch

二、刪除分支

1、刪除本地分支

git branch -d your_branch

2、刪除遠端分支

git push origin --delete your_branch

PS: git branch -a 可以檢視所有分支,一般遠端分支顯示為remotes/origin/your_branch,刪除分支時只需要寫your_branch即可。