My PHP app is stored in Cloud9 and I deployed it to Heroku from Cloud9 Git terminal.
Now there is a .json
file in the app files, has a value stored, which comes from a value entered by the user in a TextField
in the User Interface of the app.
The question is that whenever the user changes the value in the TextField
, and saves the changes (in the source code, saving corresponds to writing the changes to the .json
file), will someone have to commit (using $ git commit
) and push (using $ git push heroku master
) these changes from Cloud9 to Heroku? Or will that happened automatically?