Skip to content

Instantly share code, notes, and snippets.

@luizpicolo
Created February 14, 2020 17:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save luizpicolo/098524eea2d0d16ef31b12e56668d91d to your computer and use it in GitHub Desktop.
Save luizpicolo/098524eea2d0d16ef31b12e56668d91d to your computer and use it in GitHub Desktop.
#!/bin/bash
#Black 0;30 Dark Gray 1;30
#Red 0;31 Light Red 1;31
#Green 0;32 Light Green 1;32
#Brown/Orange 0;33 Yellow 1;33
#Blue 0;34 Light Blue 1;34
#Purple 0;35 Light Purple 1;35
#Cyan 0;36 Light Cyan 1;36
#Light Gray 0;37 White 1;37
RED='\033[0;31m'
GREEN='\033[0;32m'
NC='\033[0m'
for i in na nv pp tl; do
echo -e "${GREEN} Deploy Sigoe $i ${NC}"
git push sigoe.$i master
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment