Files that I excluded are still showing as unplayed. What for? What to do about it? I am using version 1.9.1
$ cat .git/info/exclude *.[oa] *~ main $ git status On branch master Untracked files: (use "git add <file>..." to include in what will be committed) main main~ main.o
I recreated the whole script in another directory and saw what the problem was: the lines in .git/info/excludewere indented with a few spaces - as soon as I remove the spaces, everything works; if I put spaces again, it will break. Something needs to be careful.
.git/info/exclude
I think you added this file in .gitignoreafter making changes to them. These files are stored in the cache, so you should use them in the cache using the following command:
.gitignore
git rm --cached filename
or
git rm -r --cached .// To delete all files
git rm -r --cached .
, .
Source: https://habr.com/ru/post/1613035/More articles:Использование опции authenticationDatabase при подключении к mongodb от nodejs - node.jsSplit text to get a specific value - vb.netWrong WSGIDaemonProcess command Deploying a Django application on CentOS 6.7 - pythonFolderPicker does not work in UWP Windows 10 app (mobile) - c #Updating a thermostat result from api every 10 seconds in a C # console application - jsonSpeeding up data tables. - rBootstrap 4 responsive navbar that crashes with xs width? - twitter-bootstrap-4React Native Navigator - not redrawing component when data changes in passProps? - react-nativeЗаменить позицию перезагрузки компонента загрузки (popover) автоматически - javascriptDjango + S3 + Pandas - Как сохранить фрейм данных на ведре S3? - pythonAll Articles