With Copilot
Acquia Copilot is a conversational AI connected into our product documentation and knowledge base. Ask Copilot about product features, technical details, troubleshooting and how to get started with Acquia products.
Sign in to use Acquia Copilot
When you make changes to your Drupal docroot that you want to save and deploy to your site, commit the changes from your local workspace directory. Remember that you can commit only to a branch, not to an existing tag. You can find these and other useful VCS commands in the Cloud Platform Application info panel.
In the following Git commit, note that the -a option sends all of the changes that you made to the workspace. To commit only a specific file or directory, replace -a with the name of the folder or directory.
git commit -a -m "Added Foo module."After you use the commit command to send your changes to your local clone of the repository, you must use the git push command to push the changes to the appropriate branch of your code on Cloud Platform. For example, if you are deploying from a branch named master, use the following command:
git push origin masterIf this content did not answer your questions, try searching or contacting our support team for further assistance.
If this content did not answer your questions, try searching or contacting our support team for further assistance.