Skip to content

Instantly share code, notes, and snippets.

@degnome
Created March 30, 2015 15:16
Show Gist options
  • Select an option

  • Save degnome/cf57bd8f2aa77bdd3fba to your computer and use it in GitHub Desktop.

Select an option

Save degnome/cf57bd8f2aa77bdd3fba to your computer and use it in GitHub Desktop.
Simple Deploy Script
#!/bin/bash
rm -R -f azure
git clone {azure repo url} azure
rm -R azure/*
cp -R -f build/* azure/
cd azure
git add -A
git commit -m "Code Shipped"
git push origin master
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment