Deploying Changes
How to Deploy changes between a local machine and an environment in Umbraco Deploy using either a Git Gui or without.
Deploying from local to your environments
Deploying without using a Git client
# Navigate to the repository folder
cd mySite
# Check status of the repository for pending changes
git status
# Add pending changes
git add -A
# Commit staged files
git commit -m "Adding updated schema changed"
# Push to the environment
git push
# If the push is rejected you will need to pull first
git pull
# Try to push again if there were no conflicts
git pushLast updated
Was this helpful?