25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 

21 lines
306 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_00_checkout_branch.sh $CIBLE
fi
git push all
if [ ! "$CIBLE" = "$GIT_CURRENT_BRANCH" ];
then
	git_00_checkout_branch.sh $GIT_CURRENT_BRANCH
fi