Não pode escolher mais do que 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

22 linhas
349 B

#!/bin/env bash
CIBLE=$1
if [ "$CIBLE" == "" ]
then
	echo "Using $GIT_CURRENT_BRANCH as cible"
	CIBLE=$GIT_CURRENT_BRANCH
fi
git_01_quick_commit.sh
if [ ! "$CIBLE" = "$GIT_CURRENT_BRANCH" ];
then
	git_98_checkout_branch.sh $CIBLE
fi
git push all
if [ ! "$CIBLE" = "$GIT_CURRENT_BRANCH" ];
then
	git_98_checkout_branch.sh $GIT_CURRENT_BRANCH
fi