Description
I've tried to install Git Credentials Manager
under Fedora 42 but it did not work.
I found a repository that saved me time on trying to compile or use a .deb package from GCM repository.
This package installation failed with a log about missing .NET 6 runtime.
.NET 6 runtime doesn't seem to be supported by Microsoft on Linux from their documentation so I've decided to find an alternative.
The way I foudn to make my passwords to be stored properly was to use libsecret.
Configure git to use libsecret globally:
git config --global credential.helper libsecret
Install seahorse to be able to manage these secrets.
sudo dnf install seahorse
I think the documentation should be updated for Linux to make use of libsecret instead of GCM.
Unless GCM would have proper repository to install from and a clear path on how to install .NET 6 on Fedora 42.