Skip to content

Instantly share code, notes, and snippets.

@Hey
Hey / Deploy.sh
Last active September 22, 2020 08:29
My Git deploy script (Development -> Production branch)
printf "\n🧭 Attempting to deploy to production.\n"
printf "\n🎱 Switching to Development.\n"
git checkout Development &&
printf "\n🏹 Pushing current changes from development.\n"
git push &&
printf "\n🎱 Switching to Production.\n"
git checkout Production &&