m-chrzan.xyz
aboutsummaryrefslogtreecommitdiff
path: root/man
AgeCommit message (Collapse)Author
2019-02-27clip: Add support for wl-clipboardBrett Cornwall
2018-06-14Add tests and documentation of passing options to grep(1)Norbert Buchmueller
2017-02-25git: use inner-most directoryJason A. Donenfeld
2017-02-25man: document system extensionsJason A. Donenfeld
2017-02-25man: fix typosJustin Gassner
2017-01-01show,generate: support qrcodesJason A. Donenfeld
2016-12-21extensions: make opt-inJason A. Donenfeld
2016-12-21Add signaturesJason A. Donenfeld
2016-12-20Add extensionsJason A. Donenfeld
2016-12-20generate: use /dev/urandom directlyJason A. Donenfeld
Passing to tr using the "pick and discard" technique is more straight- forwardly correct and less error-prone. It also allows users to select their own character sets to be passed to tr.
2016-02-06Revert "show: allow passing prefix to clip"Jason A. Donenfeld
This reverts commit fcb92ed69fc191e39379bad715371d8c28410885. Needs more discussion.
2016-02-06show: allow passing prefix to clipJason A. Donenfeld
2016-02-05show: allow selecting which clip lineJason A. Donenfeld
2016-02-05generate: have a default length of 25Jason A. Donenfeld
Folks are lazy and don't want to type very much, so they'd like to have a default password length to generate that can be configured via environment variables per usual. I'm making the default 25. If the user forbids the use of symbols, pwgen will use a-zA-Z0-9, ensuring that at least one A-Z and at least one 0-9 is used. We want to have a password of at least 128-bits, so factoring in the issue with "at least one of this character type", 25 gets us there squarely. Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>
2015-05-11add support for passing arbitrary options to all invocations of GPGDavid Adam
Uses the PASSWORD_STORE_GPG_OPTS environment variable. Can be used to (e.g.) change the keyrings or trust model used.
2014-09-21Alias insert to add.Jason A. Donenfeld
2014-05-27Update for new URL.Jason A. Donenfeld
2014-05-08inplace: mutually exclusive with forceJason A. Donenfeld
2014-05-06generate: add --in-place optionJason A. Donenfeld
2014-04-18init: allow deinitializationJason A. Donenfeld
2014-04-18reencrypt: remove option, do automaticallyJason A. Donenfeld
2014-04-18reencryption: only reencrypt files when requiredJason A. Donenfeld
2014-04-17move/copy: always reencrypt passwords at destinationJason A. Donenfeld
2014-04-17mv: Add pass mv/rename supportJason A. Donenfeld
Based-on-work-by: Matthieu Weber <mweber@free.fr> Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>
2014-04-16Note GREP_OPTIONS in man page.Jason A. Donenfeld
2014-04-15grep: add new pass grep commandJason A. Donenfeld
Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>
2014-04-15find: add find/search commandJason A. Donenfeld
This relies on a patched version of tree to work, unfortunately. Hopefully upstream will accept our patch. Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>
2014-03-23umask: allow overridableJason A. Donenfeld
Suggested-by: Matthew Richardson <m.richardson@ed.ac.uk>
2014-03-22clip: rename SELECTION to X_SELECTIONJason A. Donenfeld
2014-03-20Man page typo.Alex Burka
2014-03-20Configurable clipboard time.Jason A. Donenfeld
2014-03-20Allow selection to be overriden by $SELECTIONJason A. Donenfeld
Some users want to use a different clipboard for pass. Suggested-by: nand <nand@nand.wakku.to>
2014-03-20git: sign commits if enabledJason A. Donenfeld
2014-03-20man: Document multiple keys in env varJason A. Donenfeld
2014-03-19Team pass: enable multiple keys and per directoryJason A. Donenfeld
The .gpg-id file may now have multiple keys in it, one per line. If a .gpg-id file exists inside a subdirectory, passwords inside that directory are encrypted to that/those ids. The init command has learned a -p/--path option for writing such a sub directory .gpg-id and now can take several arguments for ids.
2012-10-18Man page cosmetics.Jason A. Donenfeld
2012-10-09Fix gpg22 man page typo.Jason A. Donenfeld
2012-10-03Make --no-echo default, and rename to --echo.Jason A. Donenfeld
Reported-by: Paul Wise <pabs@debian.org>
2012-09-30Explicitly use gpg2 rather than relying on symlink.Jason A. Donenfeld
2012-09-24Style fixes.Jason A. Donenfeld
2012-09-22EDITOR should be italicized.Jason A. Donenfeld
2012-09-22Allow git repo to be elsewhere via env var.Jason A. Donenfeld
2012-09-21Add support for PASSWORD_STORE_KEY env var.Jason A. Donenfeld
2012-09-21Add option to init to reencrypt all passwords.Jason A. Donenfeld
Reported-by: Simon KP <si@eskp.net>
2012-09-20Prompt before overwriting password in generate, unless --force is provided.Jason A. Donenfeld
2012-09-19Clean up git handling.Jason A. Donenfeld
Get rid of push/pull shortcuts, as they weren't widely used. Add contents to repo on git init. Centralize git add logic, and make it less error prone.
2012-09-16Support recursive and forced removal.Jason A. Donenfeld
Laurent asked for this. Reported-by: Laurent Ghigonis <laurent@p1sec.com>
2012-09-13Allow avoiding the prompt for overwriting, with --force flag.Jason A. Donenfeld
2012-09-13Add --version switch, per request.Jason A. Donenfeld
2012-09-12Use PASSWORD_STORE_DIR environment variable if it is set.Jason A. Donenfeld
A user made this request: I was wondering whether it is in a planning to have multiple password-store directory trees or possible to achieve? eg. $HOME/.pwd-store-work and $HOME/.pwd-store-home. Maybe distinguish them with a command line switch and then create aliases in .bash_aliases? Why I'm asking is that I have multiple major password categories - personal, work etc. It'll be nice to keep them separate and under different repos. Reported-by: Simon KP <si@eskp.net>