I’m using drydrop for static sites on GAE using github and just recently ran into a problem where the awesome automatic updating on git push isn’t working.
I got a message like this in my drydrop admin dashboard:
http://github.com/ //raw/master// is not affected by incoming changeset for https://github.com/ //raw/master/
after a bunch of searching (specifically for “is not affected by incoming changeset for”) and getting nowhere with it, I finally realized that my content source was:
http://github.com/ //raw/master//
but the incoming changeset was:
https://github.com///raw/master/
I changed the content source over to:
https://github.com///raw/master//
and all the magic came back.
If you still missed it, check the scheme on those urls (http vs. https).
