-
-
Save knovoselic/1a20dc28dbb0141fc176 to your computer and use it in GitHub Desktop.
This file contains 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 | |
# by http://github.com/jehiah | |
# this prints out some branch status (similar to the '... ahead' info you get from git status) | |
# example: | |
# $ git branch-status | |
# dns_check (ahead 1) | (behind 112) origin/master | |
# master (ahead 2) | (behind 0) origin/master | |
TOTAL_DIFFERENCES=0 | |
CGREEN='\033[1;32m' | |
CYELLOW='\033[1;33m' | |
CRED='\033[1;31m' | |
CEND='\033[0m' | |
while read local remote | |
do | |
[ -z "$remote" ] && continue | |
git rev-list --left-right ${local}...${remote} -- 2>/dev/null >/tmp/git_upstream_status_delta || continue | |
LEFT_AHEAD=$(grep -c '^<' /tmp/git_upstream_status_delta) | |
RIGHT_AHEAD=$(grep -c '^>' /tmp/git_upstream_status_delta) | |
TOTAL_DIFFERENCES=$(($LEFT_AHEAD + $RIGHT_AHEAD + $TOTAL_DIFFERENCES)) | |
MSG_LEFT_AHEAD="(ahead $LEFT_AHEAD)" | |
MSG_RIGHT_AHEAD="(behind $RIGHT_AHEAD)" | |
if [ "$LEFT_AHEAD" -ne 0 ]; then | |
MSG_LEFT_AHEAD="$CYELLOW$MSG_LEFT_AHEAD$CEND" | |
fi | |
if [ "$RIGHT_AHEAD" -ne 0 ]; then | |
MSG_RIGHT_AHEAD="$CRED$MSG_RIGHT_AHEAD$CEND" | |
fi | |
echo -e "$local $MSG_LEFT_AHEAD | $MSG_RIGHT_AHEAD $remote" | |
done < <(git for-each-ref --format="%(refname:short) %(upstream:short)" refs/heads) | |
if [ "$TOTAL_DIFFERENCES" == 0 ]; then | |
echo -e "${CGREEN}Everything is synchronized.$CEND" | |
fi | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
gj bud :)
building on this version - i prettified it a bit more:
https://gist.github.com/bill-auger/9335fe2633eae38d3070