php - Why does my git repo throw errors when pushing to deployment server? -


i set a repo on beanstalk app deploy app.

i have repo , submodule in following settings.

in .git/config have:

[submodule "vendor/php-instagram-api/php-instagram-api"]     path = vendor/php-instagram-api/php-instagram-api     url = git@made-by-mark.beanstalkapp.com:/made-by-mark/everydayfolk.git 

in .git/.gitmodules have:

[submodule "phpinstagram"]     path = vendor/php-instagram-api/php-instagram-api     url = git@made-by-mark.beanstalkapp.com:/made-by-mark/everydayfolk.git 

is there conflict here? when commit no errors when git push beanstalk master in beanstalk deployment area error saying:

warning: permanently added 'made-by-mark.beanstalkapp.com,50.31.156.71' (rsa) list of known hosts. fatal: reference not tree: fc4d8cf4f05c51e71ddbc7d7b80f639c68b39405 unable checkout 'fc4d8cf4f05c51e71ddbc7d7b80f639c68b39405' in submodule path 'vendor/php-instagram-api/php-instagram-api'

i have tried many fixes things aren't getting anywhere. can see issue may be?

cheers

it appears there change made in submodule, not pushed repository, trying push superproject. first push subproject , superproject.


Comments

Popular posts from this blog

java - activate/deactivate sonar maven plugin by profile? -

python - TypeError: can only concatenate tuple (not "float") to tuple -

java - What is the difference between String. and String.this. ? -