# Can't update project Possible reasons: ## Incorrect git command sequence A common mistake is the incorrect sequence of git commands (when the project is already running and you need to update it) The symptom is the response from the git command when you change code and do a `git push`: ``` Everything up-to-date ``` The following sequence of commands will help you: ```shell git add . git commit -m "Description of changes made" git push amverum master ``` Don't forget about the dot in the first command - it's needed. ## Build/deploy stopped working The project has previously been updated successfully, but this time the build/deployment does not work. We recommend freezing the application through the personal account interface in the “Settings” tab, wait a couple of minutes and repeat push/build. In some cases, this error may be caused by old artifacts and removing them may help. If none of the methods above helps, you can recreate the project with a new name. ```{eval-rst} .. admonition:: Attention :class: error Freezing a project will stop all current instances of the application without the ability to launch them without rebuilding. ``` ```{eval-rst} .. admonition:: Clue :class: hint If you can’t figure it out, write to support support@amverum.com. Please immediately indicate your user and project name. We will try to help. ```