Add a simple status script for checking input and output repos

This commit is contained in:
Petr Mrázek 2017-03-04 00:22:19 +01:00
parent e1ec941403
commit a1f0e4271d

24
status.sh Executable file
View File

@ -0,0 +1,24 @@
#!/bin/bash
BASEDIR=$(dirname "$0")
cd "${BASEDIR}"
BASEDIR=`pwd`
source config.sh
echo "Upstream:"
pushd "${UPSTREAM_DIR}"
git status
popd
echo
echo "MultiMC:"
pushd "${MMC_DIR}"
git status
popd
echo
echo "Scripts:"
git status
echo