You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 

22 rivejä
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