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.
|
|
#!/bin/env bash
|
|
|
|
|
|
git_current_branch() {
|
|
|
git branch 2> /dev/null | sed -e '/^[^*]/d' -e 's/* \(.*\)/\1/'
|
|
|
}
|
|
|
CUR_BRANCH=`git_current_branch`
|
|
|
|
|
|
CIBLE=$1
|
|
|
if [ "$CIBLE" == "" ]
|
|
|
then
|
|
|
CIBLE=$CUR_BRANCH
|
|
|
fi
|
|
|
|
|
|
git_01_quick_commit.sh
|
|
|
|
|
|
if [ ! "$CIBLE" = "$CUR_BRANCH" ];
|
|
|
then
|
|
|
git_00_checkout_branch.sh $CIBLE
|
|
|
fi
|
|
|
|
|
|
git push all
|
|
|
|
|
|
if [ ! "$CIBLE" = "$CUR_BRANCH" ];
|
|
|
then
|
|
|
git_00_checkout_branch.sh $CUR_BRANCH
|
|
|
fi
|