Struchkov Mark
e730bf16b8
All checks were successful
continuous-integration/drone/push Build is passing
1020 B
1020 B
tags | date | parents | zero-link | article | |||
---|---|---|---|---|---|---|---|
|
2023-08-31 |
|
|
https://struchkov.dev/blog/ru/remove-dsstore-git/ |
Симптомы: Есть не зафиксированный файл, который мешает гиту. Файл называется .DS_Store
.
Чтобы удалить этот файл нужно выполнить следующие команды:
find . -name .DS_Store -print0 | xargs -0 git rm --ignore-unmatch
git rm --cached .DS_Store
git add .
git commit -m "Remove .DS_Store from current directory"
[!WARNING] Терминал в Idea Команды необходимо выполнять из обычного родного терминала. Если выполнять из терминала Idea, то они не сработают.