pushpreprod
Un petit script pour pousser rapidement en préproduction :
#/bin/bash
branch=branch=$(git branch | sed -n -e 's/^\* \(.*\)/\1/p')
git checkout preprod && git pull && git merge $branch && git push && git checkout $branch