diff options
author | Stefan Kreutz <mail@skreutz.com> | 2021-10-12 15:07:02 +0200 |
---|---|---|
committer | Stefan Kreutz <mail@skreutz.com> | 2021-10-12 15:07:02 +0200 |
commit | 32eb4a205eeb6c20a16e43496a7e4229641889cc (patch) | |
tree | 8bb52ba24dd9b4b45fbc0c5c707ab32a004caaf1 /README.md | |
download | jotpass-32eb4a205eeb6c20a16e43496a7e4229641889cc.tar |
Add initial implementationjotpass-0.1.0
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/README.md b/README.md new file mode 100644 index 0000000..b087357 --- /dev/null +++ b/README.md @@ -0,0 +1,18 @@ +# Jotpass + +Jotpass is a BSD utility that facilitates generating random passwords suitable for handwriting. +See [this](https://www.skreutz.com/posts/readable-random-passwords-with-jot/) blog post for an introduction, and refer to the man page for details. + +## Install + +Run `make install` as root to install the `jotpass` utility and man page. + +## Release + +Create an annotated tag, and an archive as follows, replacing `0.1.0` with the +current version. + + $ git tag --annotate --message "Version 0.1.0" 0.1.0 + $ git archive --format=tar.gz --prefix=jotpass-0.1.0/ \ + --output jotpass-0.1.0.tar.gz 0.1.0 + |