summaryrefslogtreecommitdiff
path: root/git-show-branches-script
diff options
context:
space:
mode:
authorLibravatar Junio C Hamano <junkio@cox.net>2005-08-15 15:53:37 -0700
committerLibravatar Junio C Hamano <junkio@cox.net>2005-08-15 15:53:37 -0700
commitda27f4f3f4c23d0276a372726ed050ed13e45168 (patch)
tree8842fbebf0db214d0bc8c68e2918a712b7edede3 /git-show-branches-script
parentMerge master into rc (diff)
parent[PATCH] Add documentation for git repack and git-prune-packed. (diff)
downloadtgif-da27f4f3f4c23d0276a372726ed050ed13e45168.tar.xz
Merge master changes into rc.
Diffstat (limited to 'git-show-branches-script')
-rwxr-xr-xgit-show-branches-script53
1 files changed, 53 insertions, 0 deletions
diff --git a/git-show-branches-script b/git-show-branches-script
new file mode 100755
index 0000000000..263025c476
--- /dev/null
+++ b/git-show-branches-script
@@ -0,0 +1,53 @@
+#!/bin/sh
+#
+# Show refs and their recent commits.
+#
+
+. git-sh-setup-script || die "Not a git repository"
+
+headref=`readlink $GIT_DIR/HEAD`
+case "$#" in
+0)
+ set x `cd $GIT_DIR/refs &&
+ find heads -type f -print |
+ sed -e 's|heads/||' |
+ sort`
+ shift ;;
+esac
+
+hh= in=
+for ref
+do
+ case "/$headref" in
+ */"$ref") H='*' ;;
+ *) H='!' ;;
+ esac
+ h=`git-rev-parse --verify "$ref^0"` || exit
+ l=`git-log-script --max-count=1 --pretty=oneline "$h" |
+ sed -e 's/^[^ ]* //'`
+ hh="$hh $h"
+ echo "$in$H [$ref] $l"
+ in="$in "
+done
+set x $hh
+shift
+
+git-rev-list --pretty=oneline "$@" |
+while read v l
+do
+ in=''
+ for h
+ do
+ b=`git-merge-base $h $v`
+ case "$b" in
+ $v) in="$in+" ;;
+ *) in="$in " ;;
+ esac
+ done
+
+ echo "$in $l"
+ case "$in" in
+ *' '*) ;;
+ *) break ;;
+ esac
+done