Using monotone-viz/git-viz with mercurial

Vincent Danjean vdanjean.ml at free.fr
Sun Jun 19 15:43:40 CDT 2005


  monotone-viz is a small GTK+ application that visualizes monotone
ancestry graphs. Its home page is:
http://oandrieu.nerim.net/monotone-viz/
  As monotone and git are similar, the author adapted the 0.9 version to
display git ancestry graphs and call it git-viz. I cannot see any link
from the homepage, but looking in the archive of git ML, it can be found
here:
http://oandrieu.nerim.net/monotone-viz/git-viz-0.1.tar.gz

  I few days ago, I adapted it so that it works with the last versions
of git/cogito. Patches and package are available here:
http://dept-info.labri.fr/~danjean/deb.html#git-viz

  Today, I patched hgit so that it respects the output of git-diff-tree,
I added git-{diff-tree,cat-file,rev-list,rev-tree} that call hgit (2
lines scripts), and added the script 'hg-viz'.
  hg-viz create a .git directory and store the SHA1 of the tip in
.git/HEAD and then call my git-viz.
  All these modifications are in the attached patch.

  I try it in the mercurial repository. After applying the patch, you
just have to add the contrib directory in your PATH and call hg-viz.
  An example of what we can see is on my web page (probably not for a
long time) : http://dept-info.labri.fr/~danjean/temp/hg-viz.png

  Vincent
-------------- next part --------------
# HG changeset patch
# User vdanjean at galadriel.labri.fr
# Node ID 454e95a56abba9c9635c6a5901387a8e2564d5e6
# Parent  8f8bb77d560e70bcc95577e4dfa877df18d876ab

Add support for using git-viz

diff -r 8f8bb77d560e -r 454e95a56abb contrib/hgit
--- a/contrib/hgit	Fri Jun 17 19:37:23 2005
+++ b/contrib/hgit	Sun Jun 19 20:19:21 2005
@@ -38,12 +38,12 @@
 
         for f in c:
             # TODO get file permissions
-            print ":100664 100664 %s %s %s %s" % (hg.hex(mmap[f]), 
+            print ":100664 100664 %s %s M\t%s\t%s" % (hg.hex(mmap[f]), 
                                                       hg.hex(mmap2[f]), f, f)
         for f in a:
-            print ":000000 100664 %s %s %s %s" % (empty, hg.hex(mmap2[f]), f, f)
+            print ":000000 100664 %s %s N\t%s\t%s" % (empty, hg.hex(mmap2[f]), f, f)
         for f in d:
-            print ":100664 000000 %s %s %s %s" % (hg.hex(mmap[f]), empty, f, f)
+            print ":100664 000000 %s %s D\t%s\t%s" % (hg.hex(mmap[f]), empty, f, f)
     ##
 
     revs = []
diff -r 8f8bb77d560e -r 454e95a56abb contrib/git-diff-tree
--- /dev/null	Fri Jun 17 19:37:23 2005
+++ b/contrib/git-diff-tree	Sun Jun 19 20:19:21 2005
@@ -0,0 +1,5 @@
+#!/bin/sh
+
+op=`basename $0 | sed -e 's/^git-//'`
+exec hgit $op "$@"
+
diff -r 8f8bb77d560e -r 454e95a56abb contrib/hg-viz
--- /dev/null	Fri Jun 17 19:37:23 2005
+++ b/contrib/hg-viz	Sun Jun 19 20:19:21 2005
@@ -0,0 +1,26 @@
+#!/bin/sh
+
+set -e
+
+if test x"$1" != x ; then
+  cd $1
+fi
+
+if [ ! -d ".hg" ]; then
+    echo "${1:-.} is not a mercurial repository" 1>&2
+    echo "Aborting" 1>&2
+    exit 1
+fi
+if [ ! -d ".git" ]; then
+    mkdir -v ".git"
+fi
+if [ -e ".git/HEAD" ]; then
+    if [ ! -e ".git/HEAD.hg-viz-save" ]; then
+        mv -v ".git/HEAD" ".git/HEAD.hg-viz-save"
+    else
+        rm -vf ".git/HEAD"
+    fi
+fi
+hg history | head -1 | awk -F: '{print $3}' > .git/HEAD
+git-viz
+
diff -r 8f8bb77d560e -r 454e95a56abb contrib/git-rev-list
--- /dev/null	Fri Jun 17 19:37:23 2005
+++ b/contrib/git-rev-list	Sun Jun 19 20:19:21 2005
@@ -0,0 +1,5 @@
+#!/bin/sh
+
+op=`basename $0 | sed -e 's/^git-//'`
+exec hgit $op "$@"
+
diff -r 8f8bb77d560e -r 454e95a56abb contrib/git-cat-file
--- /dev/null	Fri Jun 17 19:37:23 2005
+++ b/contrib/git-cat-file	Sun Jun 19 20:19:21 2005
@@ -0,0 +1,5 @@
+#!/bin/sh
+
+op=`basename $0 | sed -e 's/^git-//'`
+exec hgit $op "$@"
+
diff -r 8f8bb77d560e -r 454e95a56abb contrib/git-rev-tree
--- /dev/null	Fri Jun 17 19:37:23 2005
+++ b/contrib/git-rev-tree	Sun Jun 19 20:19:21 2005
@@ -0,0 +1,5 @@
+#!/bin/sh
+
+op=`basename $0 | sed -e 's/^git-//'`
+exec hgit $op "$@"
+


More information about the Mercurial mailing list