Open
Description
At the moment it is only possible to set the options "Use git", "Automatically push" and "Automatically pull" globally but not per profile. If you have one profile with a local password store and one profile with a remote password store managed by git and you have "Use git" and one of "Automatically push" or "Automatically pull" enabled then qtpass will show an error message because the local profile does not have a remote repository configured by default.
A workaround is to add a local remote repository for the local password store(s):
$ mkdir ~/.password-store-backup
$ git init --bare ~/.password-store-backup
$ pass git remote add origin ~/.password-store-backup
$ pass git push --set-upstream origin master