Git ignore ALL caches
July 28, 2021
Cache Ordner ignorieren
code
find . -type d -name "*cache*"
.gitignore:
code
[Cc]ache
**/[Cc]ache
**/.[Cc]ache
*-[Cc]ache
**/*-[Cc]ache
**/.*-[Cc]ache
Bereits getrackte Caches entfernen
code
git rm -r --cached .
git add .
git commit -m "Update .gitignore"