ONLYOFFICE Document Server is an online office suite comprising viewers and editors for texts, spreadsheets and presentations, fully compatible with Office Open XML formats: .docx, .xlsx, .pptx and enabling collaborative editing in real time.
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.
DocumentServer/mr-update.sh

15 lines
180 B

#!/bin/bash
BRANCHES=()
BRANCHES+=(develop)
BRANCHES+=(master)
if [ -n "$1" ]; then
BRANCHES+=($1)
fi
for i in ${BRANCHES[@]}; do
mr git checkout ${i}
mr git pull
done