Мне нужно удалить большой файл из моей истории git. Для этой цели я попытался применить bfg-repo-cleaner. Я следовал инструкциям, приведенным на их сайте . Все работало нормально, пока я не попытался отправить изменения в мою локальную папку. Тогда я получил ошибку: отказываясь обновлять проверенную ветку: refs /heads / master.
Я впервые побежал:
$ git clone --mirror mylocalrepository
$ java -jar bfg-1.13.0.jar --delete-files EDULIT_DS_15052019132334512.csv mylocalrepository.git
$ cd mylocalrepository.git
$ git reflog expire --expire=now --all
$ git gc --prune=now --aggressive
Это сработало как шарм.
Тогда я побежал:
git push
Это дало мне следующую ошибку
remote: error: refusing to update checked out branch: refs/heads/master
remote: error: By default, updating the current branch in a non-bare repository
remote: is denied, because it will make the index and work tree inconsistent
remote: with what you pushed, and will require 'git reset --hard' to match
remote: the work tree to HEAD.
remote:
remote: You can set the 'receive.denyCurrentBranch' configuration variable
remote: to 'ignore' or 'warn' in the remote repository to allow pushing into
remote: its current branch; however, this is not recommended unless you
remote: arranged to update its work tree to match what you pushed in some
remote: other way.
remote:
remote: To squelch this message and still keep the default behaviour, set
remote: 'receive.denyCurrentBranch' configuration variable to 'refuse'.
To C:/Users/Username/SomeFolder/mylocalrepository
! [remote rejected] master -> master (branch is currently checked out)
Я понимаю, что потенциально я мог бы просто изменить настройки в своем локальном репозитории git с помощью 'receive.denyCurrentBranch', но я, честно говоря, не совсем понимаю, что я делаю. Это лучшее решение?