Hi, in trying to survive in the forest of git repositories I spread all over my boxes, I came to this script. I use it to see which changes are in my local branches w.r.t. tracked remotes and vice versa. It is pretty raw and uses only commands I know. Feel free to point me to better command using. Or to a better script, which I am sure has been already written ;) cheers, Domenico #! /bin/sh if [ -z "$1" ]; then echo "usage: $0 <remote>" exit fi for b in $(git branch | sed 's/^..//'); do if ! git branch -r | grep $1/$b >/dev/null; then continue fi if [ -n "$(git log $b..$1/$b)" ]; then echo "$b..$1/$b:" git log $b..$1/$b fi if [ -n "$(git log $1/$b..$b)" ]; then echo "$1/$b..$b:" git log $1/$b..$b fi done -----[ Domenico Andreoli, aka cavok --[ http://www.dandreoli.com/gpgkey.asc ---[ 3A0F 2F80 F79C 678A 8936 4FEE 0677 9033 A20E BC50 - To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html