Skip to content

Instantly share code, notes, and snippets.

View cheshirrrcat's full-sized avatar
👻
Dealing with ghosts

Mikhail Gladchenko cheshirrrcat

👻
Dealing with ghosts
  • Justice League
  • Portugal, Lisbon
View GitHub Profile
@cheshirrrcat
cheshirrrcat / remove-from-git-index
Created December 22, 2014 13:51
Удалить файл из индекса git-репозитория без его физического удаления
Для удаления файла из git-репозитория без его физического удаления:
git rm --cached mylogfile.log
Для удаления папки (рекурсивно) можно сделать так:
git rm -r --cached folderName
А для того, чтобы ситуация не повторялась, лучше добавьте файл или папку в .gitignore.
http://stackoverflow.com/questions/23646576/updated-firstobject-is-undefined-emberjs-array