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.

15 linhas
190 B

#!/bin/env bash
CIBLE=$1
if [ "$CIBLE" == "" ]
then
	CIBLE=$GIT_CURRENT_BRANCH
fi
git_01_quick_commit.sh
if [ ! "$CIBLE" = "$GIT_CURRENT_BRANCH" ];
then
	git checkout $CIBLE
	git pull
fi