"Feature not available for users using GPG" - why, and what can I (as a user) do about it? #3605
-
|
When trying to move a hunk from a prior commit to a new commit, I'm getting this:
|
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 2 replies
-
Yes, this would be nice. It should be easy to do, all it takes is to insert this code if self.config.UsingGpg() {
return errors.New(self.Tr.DisabledForGPG)
}in
Because it's a bit tricky to implement; see this comment in the code.
If it is possible to configure your GPG setup so that you don't have to enter a password each time, then you can set lazygit's |
Beta Was this translation helpful? Give feedback.
-
|
Thank you, @stefanhaller!
With SSH signing you do not need to enter password each time as long as your ssh-agent keeps your password. I'll give |
Beta Was this translation helpful? Give feedback.

Yes, this would be nice. It should be easy to do, all it takes is to insert this code
in
handlePullPatchIntoNewCommit, before the call toOpenCommitMessagePanel; PRs welcome. (We'd be checking this twice then, which is a bit ugly, but improving the user experience in this way is probably worth it, I'd say.)Because it's a bit tricky to implement; see this comment in the code.
If it is po…