Does TortoiseGit work with PortableGit-x.x.x.x-previewyyyyyy? What are compatible git versions for TortoiseGit?

TortoiseGit (as of 2.14) requires a command-line git.exe. It works with a variety of different “git.exe providers”. Known to work are: Git for Windows 2.24+ (https://gitforwindows.org/, based on MSYS2; portable and installer are known to work; recommended; for Git for Windows >= 2.16 you need at least TortoiseGit 2.5.7; older versions of Git are not … Read more

Support for password authentication was removed on August 13, 2021

Github Has Revoked the support for password authentication on 13 Aug 2021 and giving the below mentioned response: Support for password authentication was removed on August 13, 2021 In order to fix the issue follow the below steps: Goto settings of Github account Find and Select Developer Settings Find and Select Personal access tokens Generate … Read more

Invalid SSL certificate when pushing to Git server

Git for Windows has its own trust store of trusted certificates which is normally located in the file Git for Windows <=1.9: [Git installdir]\bin\curl-ca-bundle.crt (e.g., C:\Program Files (x86)\Git\bin\curl-ca-bundle.crt; configured by the key http.sslCAinfo in [Git installdir]\etc\gitconfig). Git for Windows >= 2.0: [Git installdir]\mingwXX\ssl\certs\ca-bundle.crt where XX stands for 32 or 64 (e.g., C:\Program Files\Git\mingw64\ssl\certs\ca-bundle.crt; configured by … Read more

Remove saved credentials from TortoiseGit

Normally the invalid credentials should be purged automatically (after one unsuccessful authentication attempt). Go to the Windows Credential Manager (press Windows and type “Credential Manager”, or go to Control Panel\User Accounts and Family Safety\Credential Manager or use Start->Run rundll32.exe keymgr.dll,KRShowKeyMgr), there all saved credentials should be listed (prefixed with git:). For ways to also remove … Read more

TortoiseGit save user authentication / credentials

For TortoiseGit 1.8.1.2 or later, there is a GUI to switch on/off credential helper. It supports git-credential-wincred and git-credential-winstore. TortoiseGit 1.8.16 add support for git-credential-manager (Git Credential Manager, the successor of git-credential-winstore) For the first time you sync you are asked for user and password, you enter them and they will be saved to Windows … Read more

Git with SSH on Windows

I fought with this problem for a few hours before stumbling on the obvious answer. The problem I had was I was using different ssh implementations between when I generated my keys and when I used git. I used ssh-keygen from the command prompt to generate my keys and but when I tried “git clone … Read more