Created
August 22, 2018 04:17
-
-
Save sompylasar/4fb9be0a4b318697ee0f022d64b2338f to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
set -eu | |
REPO_PATH=$1 | |
if [[ ! -d "${REPO_PATH}" ]]; then | |
exit -1 | |
fi | |
( cd "${REPO_PATH}" && LC_ALL=en_US.utf-8 LANG=en_US.utf-8 /usr/local/bin/git-up ) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment