mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-05-12 17:04:57 +00:00
34 lines
704 B
Bash
Executable File
34 lines
704 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
eval BRANCH_NAME=""
|
|
|
|
branch_name(){
|
|
BRANCH_NAME=$1
|
|
}
|
|
|
|
show_help() {
|
|
echo "Usage: check-branch-updated.sh"
|
|
echo ""
|
|
echo "-b branch name"
|
|
}
|
|
|
|
while [[ $1 == -* ]]; do
|
|
case "$1" in
|
|
-b) branch_name $2; shift 2;;
|
|
-*) echo "invalid option: $1" 1>&2; show_help; exit 0;;
|
|
esac
|
|
done
|
|
|
|
if [[ "$BRANCH_NAME" == "" ]]
|
|
then
|
|
echo "The branch name is mandatory"
|
|
exit 0
|
|
fi
|
|
|
|
hash1=$(git show-ref --heads -s develop)
|
|
hash2=$(git merge-base develop $BRANCH_NAME)
|
|
[ "${hash1}" = "${hash2}" ] && echo "Branch up to date" || { echo "Branch needs to be rebeased"; exit 1; }
|
|
|
|
echo "Development branch HEAD sha " $hash1
|
|
echo "$BRANCH_NAME branch HEAD sha " $hash2
|