91883E11E83DC29D14104DB4EDD44359093056EE
- I am having the same sort of problem as @schroeca but for this key instead:stephen@Rachel MSYS ~
$ pacman -Syuu
error: git-for-windows-mingw64: key "91883E11E83DC29D14104DB4EDD44359093056EE" is unknown
:: Import PGP key 91883E11E83DC29D14104DB4EDD44359093056EE? [Y/n] y
error: key "91883E11E83DC29D14104DB4EDD44359093056EE" could not be looked up remotely
error: git-for-windows-mingw32: key "91883E11E83DC29D14104DB4EDD44359093056EE" is unknown
:: Import PGP key 91883E11E83DC29D14104DB4EDD44359093056EE? [Y/n] y
error: key "91883E11E83DC29D14104DB4EDD44359093056EE" could not be looked up remotely
:: Synchronizing package databases...
git-for-windows-mingw64 15.7 KiB 10.7 KiB/s 00:01 [################################################] 100%
git-for-windows-mingw32 15.7 KiB 31.4 KiB/s 00:01 [################################################] 100%
mingw32 is up to date
mingw64 is up to date
ucrt64 is up to date
clang64 is up to date
msys is up to date
error: git-for-windows-mingw64: key "91883E11E83DC29D14104DB4EDD44359093056EE" is unknown
:: Import PGP key 91883E11E83DC29D14104DB4EDD44359093056EE? [Y/n] n
error: git-for-windows-mingw32: key "91883E11E83DC29D14104DB4EDD44359093056EE" is unknown
:: Import PGP key 91883E11E83DC29D14104DB4EDD44359093056EE? [Y/n] n
error: failed to synchronize all databases (invalid or corrupted database (PGP signature))
stephen@Rachel MSYS ~
$ gpg --homedir /etc/pacman.d/gnupg/ --with-subkey-fingerprints --list-keys 0x91883E11E83DC29D14104DB4EDD44359093056EE
gpg: Note: trustdb not writable
pub rsa4096 2021-03-23 [SC] [expires: 2026-03-22]
E8325679DFFF09668AD8D7B67115A57376871B1C
uid [ultimate] Johannes Schindelin <johannes.schindelin@gmx.de>
sub rsa4096 2021-03-23 [E] [expires: 2026-03-22]
958D57D8AD8823F11D033AAB6D0EA17128B145BC
sub rsa4096 2021-03-23 [S] [expires: 2026-03-22]
91883E11E83DC29D14104DB4EDD44359093056EE
mingw-w64-git-credential-manager
package originally contained Git Credential Manager for Windows.
mingw-w64-git-credential-manager-core
, side-by-side with GCM for Windows.
mingw-w64-git-credential-manager-core
to mingw-w64-git-credential-manager
.
Hi all,
I'm struggling with git bash: I try to exec into the shell of a kubernetes container, but git bash always prepends a windows path (kubectl run test --image=alpine:latest -it /bin/sh
gets executed as "C:\Program Files\Docker\Docker\resources\bin\kubectl.exe" run test --image=alpine:latest -it "C:/Program Files/Git/usr/bin/sh"
.
How can I prevent the expansion of the /bin/sh
part? Quoting with single quotes or double quotes didn't help...