This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Для удаления файла из git-репозитория без его физического удаления: | |
git rm --cached mylogfile.log | |
Для удаления папки (рекурсивно) можно сделать так: | |
git rm -r --cached folderName | |
А для того, чтобы ситуация не повторялась, лучше добавьте файл или папку в .gitignore. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
http://stackoverflow.com/questions/23646576/updated-firstobject-is-undefined-emberjs-array |