digital-garden/dev/git/Удаление .DS_Store из Git репозитория.md

33 lines
1020 B
Markdown
Raw Normal View History

2024-09-04 20:02:42 +03:00
---
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`.
2024-09-04 20:02:42 +03:00
Чтобы удалить этот файл нужно выполнить следующие команды:
```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, то они не сработают.