“GIT обновление GITIGNORE” Ответ

GIT обновление GITIGNORE

git rm -r --cached .
git add .
git commit -m "update gitignore"
Proud Falcon

Reinit Gitignore

# rm all files
git rm -r --cached .
# add all files as per new .gitignore
git add .
# now, commit for new .gitignore to apply
git commit -m ".gitignore is now working"
Attractive Alligator

Gitigore RM Cache

git rm -r --cached .
Blue Beetle

Удалить файлы Gitignore

git ls-files --ignored --exclude-standard -z | xargs -0 git rm --cached
git commit -am "Remove ignored files"


// answer from: thSoft
Hurt Hummingbird

git добавить gitignore

$ touch .gitignore
Alert Alligator

Ответы похожие на “GIT обновление GITIGNORE”

Вопросы похожие на “GIT обновление GITIGNORE”

Больше похожих ответов на “GIT обновление GITIGNORE” по Shell/Bash

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

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