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