You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Sometimes composer does a git checkout to get the code it needs. When it does so, the .git directory remains. When switching to git mode and committing the updates on pantheon, these packages are (partially?) added as submodules.
This shell command gets close: find . | grep "\.git" | xargs rm -rf
but may delete too much, like .gitignore, .gitattributes, etc.
The text was updated successfully, but these errors were encountered:
Sometimes composer does a git checkout to get the code it needs. When it does so, the .git directory remains. When switching to git mode and committing the updates on pantheon, these packages are (partially?) added as submodules.
This shell command gets close:
find . | grep "\.git" | xargs rm -rf
but may delete too much, like .gitignore, .gitattributes, etc.
The text was updated successfully, but these errors were encountered: