“Git Force Add Add Игнорированный файл” Ответ

Git - чистящий файл игнорируется, когда .gitignore добавляется после изменений

# Remove the files from the index (not the actual files in the working copy)
$ git rm -r --cached .

# Add these removals to the Staging Area...
$ git add .

# ...and commit them!
$ git commit -m "Clean up ignored files"
Brave Bear

git удалить игнорируемые файлы

git rm --cached <file>
git rm -r --cached <folder>
Defiant Dragonfly

Force Add, несмотря на .gitignore файл

git add --force my/ignore/file.foo
Indian Gooner

Git Force Add Add Игнорированный файл

git add storage/ignored.csv -f
Y@nn

Ответы похожие на “Git Force Add Add Игнорированный файл”

Вопросы похожие на “Git Force Add Add Игнорированный файл”

Больше похожих ответов на “Git Force Add Add Игнорированный файл” по Shell/Bash

Смотреть популярные ответы по языку

Смотреть другие языки программирования