Forrest logo
back to the gopass tool

gopass:tldr:9997d

gopass: Mount a shared Git store.
$ gopass mounts add ${store_name} ${git_repo_url}
try on your machine

This command adds a new mount point to the gopass password store.

  • gopass refers to the command-line tool for managing passwords and secrets using the password store.
  • mounts is a subcommand used to manage mount points, which are locations where password store repositories are mounted.
  • add is an option that specifies that we want to add a new mount point.
  • ${store_name} is a placeholder for the name of the mount point or the directory under which the password store will be mounted.
  • ${git_repo_url} is a placeholder for the URL of the git repository where the password store is stored.

Using this command, you can add new mount points to gopass to access password stores stored in different locations. This allows you to manage multiple password stores using a single gopass installation.

This explanation was created by an AI. In most cases those are correct. But please always be careful and never run a command you are not sure if it is safe.
back to the gopass tool