Git development
 help / color / mirror / Atom feed
* git-log-branches
@ 2007-08-10  7:53 Domenico Andreoli
  0 siblings, 0 replies; only message in thread
From: Domenico Andreoli @ 2007-08-10  7:53 UTC (permalink / raw)
  To: git

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

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2007-08-10  7:53 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-08-10  7:53 git-log-branches Domenico Andreoli

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox