From 145b8ee43ed64e9511201bf774ee12ae44c13ca9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=ABl=20Schaerer?= Date: Wed, 25 Aug 2010 11:23:28 +0200 Subject: [PATCH 1/2] remove incorrect statement --- README.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.rst b/README.rst index 9b4c65d..1e6c716 100644 --- a/README.rst +++ b/README.rst @@ -8,7 +8,7 @@ A ``cd`` command that learns One of the most used shell commands is ``cd``. A quick survey among my friends revealed that between 10 and 20% of all commands they type are actually ``cd`` commands! Unfortunately, jumping from one part of your system to another with ``cd`` requires to enter almost the full path, which isn't very practical and requires a lot of keystrokes. -autojump is a faster way to navigate your filesystem. It works by maintaining a database of the directories you use the most from the command line. The jumpstat command shows you the current contents of the database. You need to work a little bit before the database becomes usable. Autojump will listen and rank your 'cd' commands by frequency. Once your database is reasonably complete, you can "jump" to a commonly "cd"ed directory by typing: +autojump is a faster way to navigate your filesystem. It works by maintaining a database of the directories you use the most from the command line. The jumpstat command shows you the current contents of the database. You need to work a little bit before the database becomes usable. Once your database is reasonably complete, you can "jump" to a commonly "cd"ed directory by typing: j dirspec From dfe762625175c6c1250384f3360cc6ca64c6524c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=ABl=20Schaerer?= Date: Wed, 25 Aug 2010 11:49:33 +0200 Subject: [PATCH 2/2] small script to make releases with git --- make_release.sh | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100755 make_release.sh diff --git a/make_release.sh b/make_release.sh new file mode 100755 index 0000000..103e85f --- /dev/null +++ b/make_release.sh @@ -0,0 +1,18 @@ +#!/bin/bash + +if [ $# -ne 1 ] +then + echo "Usage: `basename $0` release" + echo "where release is of the form v11, v12, ..." + exit 1 +fi +version=$1 + +#check for tag existence +git describe release-$1 2>&1 >/dev/null || +{ + echo "Invalid version $1" + exit 1 +} + +git archive --format=tar --prefix autojump_${version}/ release-${version} | gzip > autojump_${version}.tar.gz