summaryrefslogtreecommitdiffstats
path: root/FAQ.md
diff options
context:
space:
mode:
authorAnne Jan Brouwer <brouwer@annejan.com>2016-10-24 17:08:47 +0200
committerAnne Jan Brouwer <brouwer@annejan.com>2016-10-24 17:08:47 +0200
commit9eddad376947e55b875903fdd45ad92a58cce2ac (patch)
treee11f328735fb595cfec84706d9c33fe74b2120b9 /FAQ.md
parentbb035d36a2e36f997a762fd98a869659a9b87e11 (diff)
Added gpg vs gpg2 discrepancy to FAQ #92#issuecomment-255377497
Diffstat (limited to 'FAQ.md')
-rw-r--r--FAQ.md14
1 files changed, 14 insertions, 0 deletions
diff --git a/FAQ.md b/FAQ.md
index e09f71c0..2de078bd 100644
--- a/FAQ.md
+++ b/FAQ.md
@@ -44,6 +44,20 @@ fi
link `/usr/bin/pinentry` to your pinentry application of choice
eg: `ln -s /usr/bin/pinentry-qt5 /usr/bin/pinentry`
+### I have an other issue with gpg
+
+* Possibly you have you key only in gpg and not in gpg2
+
+```
+gpg --export [ID] > public.key
+gpg --export-secret-key [ID] > private.key
+gpg2 --import public.key
+gpg2 --import private.key
+rm public.key private.key
+```
+Where [ID] is your gpg key-id.
+* It might be the case where it is the other way around, exchange gpg and gpg2 accordingly . .
+
### Git doesn't work on Windows
git for Windows comes with an `ssh-askpass` compatible command, git `gui--askpass` (located in `/mingw64/libexec/git-core/git-gui--askpass` on PortableGit version, presumably some place similar for the installed version).