diff options
-rw-r--r-- | update_documentation.sh | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/update_documentation.sh b/update_documentation.sh index 7651835..7f70cbf 100644 --- a/update_documentation.sh +++ b/update_documentation.sh @@ -34,12 +34,17 @@ echo "Checking out $FROM_BRANCH..." && \ git fetch origin ${FROM_BRANCH}:${FROM_BRANCH} && \ git checkout ${FROM_BRANCH} +echo "Pulling the $FROM_BRANCH branch" && \ +git pull && \ echo "Checking out $TO_BRANCH..." && \ # Checkout the latest stable git fetch origin ${TO_BRANCH}:${TO_BRANCH} && \ git checkout ${TO_BRANCH} && \ +echo "Pulling the $TO_BRANCH branch" && \ +git pull && \ + # Merge the dev into latest stable echo "Merging changes..." && \ git merge ${FROM_BRANCH} && \ |