In fact, you need to push a new branch to deal with it. The Moovweb cloud will not compile other branches. It is not intended to host a repository for hosting code, but rather for use both for testing and deployment.
Thus, the code will look like this:
git push origin my_branch:master
This takes your my_branch branch and pushes it to the master. You may need to add "-f" to force the last build.
source share