nfdi4plants / ARCitect

Cross-plattform app to create and manage ARCs.
9 stars 6 forks source link

[BUG] open button disabled after downloading ARC #165

Closed SabrinaZander closed 3 months ago

SabrinaZander commented 4 months ago

Windows 11, ARCitect 0.0.31

After downloading an existing ARC, the OPEN button in the dialog is always disabled. You could only close the dialog and open the ARC from the folder.

It would be easier if the open button worked and the ARC opened directly in ARCitect. I'm not sure if the function doesn't exist at the moment or if it is a bug. Screenshot 2024-03-14 083054

Brilator commented 4 months ago

The open button works on my end. But you're also running into an error fatal: credential-cache unavailable; no unix socket support

SabrinaZander commented 4 months ago

I tried several other ARCs and I always run into this error: fatal: credential-cache unavailable; no unix socket support Any idea how to solve the error?

Brilator commented 4 months ago

@JonasLukasczyk ?

Is it possible that the win git binary shipped with ARCitect is also not used and / or this is an issue with system git / gitconfig?

Brilator commented 4 months ago

The issue was solved by removing "credential.helper=cache" from user gitconfig by hand or via git config --global --unset credential.helper. Alternatively, it's solved by overwriting the setting with "store" instead of "cache" via git config --global credential.helper store.

Since git config --global --unset credential.helper could interfere / annoy when using ARC Commander, I'd suggest to solve this via git config --global credential.helper store to overwrite the cache.