3
我將文件夾.Rproj.user
添加到.gitignore
。但是,其中包含的某些文件仍然顯示(請參見截圖)。任何想法我能做些什麼呢?加入.Rproj.user/**
.gitignored文件仍然顯示在RStudio
我將文件夾.Rproj.user
添加到.gitignore
。但是,其中包含的某些文件仍然顯示(請參見截圖)。任何想法我能做些什麼呢?加入.Rproj.user/**
.gitignored文件仍然顯示在RStudio
所有文件首先已經COMMITED所以你必須從回購中取出後
更新
沒有變化:
git rm -r --cached .Rproj.user/**
git commit -m "Removed files...."
# now add it to the `.gitignore` and the files will be ignored
補充一點:
.Rproj.user/**
你需要將其標記爲文件夾。
爲了做到這一點添加2 **
以上
P.S.
這是一個很酷的鉤子,這將阻止這些類型的文件,當您嘗試添加推動他們到服務器。
What are some more forceful ways than a .gitignore to keep (force) files out of a repo?
不幸的是,它沒有奏效。往上看。 –
我明白了爲什麼,它已經在你的回購中了。首先你必須刪除它: – CodeWizard
'git rm --cached .Rproj.user/**'然後提交更改,git忽略將從這一點捕獲 – CodeWizard