git移除資料夾的版本控制

2022-02-23 08:09:48 字數 523 閱讀 6379

案例背景:git提交的時候把bin檔案下的各種.dll提交上去了,然後每次提交都得提交好多檔案,很容易忽略你真正修改的東西,故對這些不必要的東西忽略掉

解決方案:git rm 命令引數

具體實施:

1.執行git rm -r -n --cached "bin/",此命令是展示要刪除的檔案表預覽

2.執行git rm -r --cached "bin/",刪除檔案的命令.

3.執行git commit -m" 刪除bin檔案",提交,並加注釋

4.執行git push origin master,提交到遠端伺服器

5.在.gitignore檔案中新增bin/,並提交.gitignore 檔案

以上就可以實現移除bin檔案的版本控制!

Git 移除檔案版本控制

發現遠端倉庫中的.idea下有2個檔案,而.idea資料夾已經在.ignore中忽略了 所以現在要撤銷對這兩個檔案的版本控制 展示要刪除的檔案表預覽 git rm r n cached idea rm idea misc.xml rm idea modules.xml git rm命令引數解釋 執行...

git如何移除某檔案的版本控制

1 還沒有加到版本控制中 1 還沒有git add 在 gitignore中新增 2 已經git add 先 git rm r cached 檔案 在 gitignore中新增 2 已經加到版本控制中 先 git rm r cached 檔案 在 gitignore中新增 最後 gti commit...

Git筆記 新增檔案,資料夾,空資料夾

git status 檢視那些檔案被修改,那些檔案待提交 git status on branch develop your branch is up to date with origin develop nothing to commit,working directory clean表示當前沒...