“Удалить .idea из git” Ответ

Как удалить .дея из git

$ echo '.idea' >> .gitignore
$ git rm -r --cached .idea
$ git add .gitignore
$ git commit -m '(some message stating you added .idea to ignored entries)'
$ git push
Charith Gamage

Удалить .idea из git

for reference : https://www.david-merrick.com/2017/08/04/how-to-remove-the-idea-folder-from-git/
Lokesh003Coding

Ответы похожие на “Удалить .idea из git”

Вопросы похожие на “Удалить .idea из git”

Больше похожих ответов на “Удалить .idea из git” по Shell/Bash

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

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