我正在尝试安装一个没有预装供应商的新 Symfony 项目。我正在运行 Windows,并且我使用了 Symfony 食谱中的以下指南:
我对 Git 和 Symfony 都很陌生。当我运行 bin/vendors 脚本时,我最终遇到了这个问题:
Installing/Updating monolog
M src/Monolog/Handler/FingersCrossed/ActivationStrategyInterface.php
M src/Monolog/Handler/FingersCrossed/ErrorLevelActivationStrategy.php
"monolog" has local modifications. Please revert or commit/push them before running this command again.
我正在运行 2.0.15。我已经尝试(根据我对 Git、cmd 和 Symfony 的有限知识)使用本指南处理行尾以及最终Charles Baily 对“尝试使用 git filter-branch 修复行尾,但有没有运气'。
我不认为我做对了。我从我的 cmd 运行以下行:
git config --global core.autocrlf true
#Nothing appears, just a new line
git rm --cached -r .
#Alot of files appear
git reset --hard
#HEAD is now at xxxxx initial commit
git add .
#According to the first link and Charles Baily's answer there should appear alot of files, but none do.
git commit -m "message"
#Nothing to commit
有没有人知道我做错了什么以及如何解决这个问题?