git submodules - 'Git could not checkout' error is causing problem while deploying an app on engineyard -
i'm trying deploy app on engine yard. i'm using rails 2.3.5 , ruby 1.8.7
when try deploy it,
~> deploying revision 481f05e emergency commit :: running git checkout -q '481f05e42f3e13b5eda7e598a1b797b031c9ca5e' :: running git submodule sync synchronizing submodule url '' :: running git submodule update --init no submodule mapping found in .gitmodules path 'school' no submodule mapping found in .gitmodules path 'school' *** [error] git not checkout (481f05e42f3e13b5eda7e598a1b797b031c9ca5e) ***
is git submodule sync causing problem?
i not have submodules in repository.
i not have submodules in repository.
that means shouldn't see .gitmodules
file in repo.
if there is, means have somehow submodule declared (in case you might want remove it).
if there isn't .gitmodules file, within school path makes deployment script believe submodules, , tries access (non-existent) .gitmodules
file of parent repo.
may school
has .git
directory in it?
Comments
Post a Comment