This strategy provides a very quick way to deploy your application by simply running git pull
in your current folder. It updates directly the current
folder and does not create a new release.
- This strategy does not provide zero-downtime deployments. Use only for small changes that need to be live asap.
- Futhermore this strategy will not run any tasks in your
build
hook to avoid spending too much time in "no zero-downtime" land.
Simply goes to your current
directory and run git pull
. It throws an error message if no current
directory exists, advising you to first deploy your application using another strategy.