Extract modified files from GIT
Recently I stumbled upon a great script for extracting modified files between two GIT commits. This is great for website deployments assuming on client side only ftp is accepted. #!/bin/bash BOLD=”\033[1m” _BOLD=”\033[22m” RED=”\033[31m” YELLOW=”\033[33m” GREEN=”\033[32m” RESET=”\033[39m” range=$1 if [ -z … Continue reading