From 9bb2d93cc4f0a0c55d1d6634a52ddf20db9853f3 Mon Sep 17 00:00:00 2001 From: Joey Hess Date: Thu, 7 Feb 2013 11:50:23 -0400 Subject: [PATCH] Added lib/vis, an add-on to visualise repo history. Closes: #693022 Thanks, Paul Wise --- debian/changelog | 2 ++ lib/vis | 12 ++++++++++++ 2 files changed, 14 insertions(+) create mode 100644 lib/vis diff --git a/debian/changelog b/debian/changelog index 1c93976..8e1fe43 100644 --- a/debian/changelog +++ b/debian/changelog @@ -3,6 +3,8 @@ mr (1.14) UNRELEASED; urgency=low * Added a fetch command. Closes: #480580 * status: Now includes information about unpushed changes, for git, git-svn, hg, and bzr. Closes: #693021 + * Added lib/vis, an add-on to visualise repo history. + Closes: #693022 Thanks, Paul Wise -- Joey Hess Sun, 11 Nov 2012 11:33:05 -0400 diff --git a/lib/vis b/lib/vis new file mode 100644 index 0000000..6dff868 --- /dev/null +++ b/lib/vis @@ -0,0 +1,12 @@ +# Adds a "mr vis" command to visualise repository history. + +# To make mr use this file, add a line like this inside the [DEFAULT] +# section of your ~/.mrconfig +#include = cat /usr/share/mr/vis + +cvs_vis = cvs diff | $EDITOR - +svn_vis = svn status | $EDITOR - +git_svn_vis = gitk --all +git_vis = gitk --all +bzr_vis = bzr visualize +hg_vis = hg view -- 2.39.2