Can't push from Git Bash: Could not find UI helper 'GitHub.UI'

55k Views Asked by At

After a fresh install, I could clone the repository, make changes and commits, but when I try to push I get the following warning:

warning: could not find UI helper 'GitHub.UI'

After this, the process seems to still be running, but it gets stuck until I press Ctrl + C it.

I couldn't find this error online.

I can push from GitHub Desktop.

13

There are 13 best solutions below

4
On BEST ANSWER

Maybe, there is some kind of issue in the latest update of Git v(2.39.0). However, you can get rid of this by installing the previous version of Git v(2.38.1).

Follow these few steps to solve this issue:

  1. Uninstall the currently installed Git.
  2. Go to Git for Windows 2.38.1 to download the Git v(2.38.1)
  3. Install the Git v(2.38.1)

Done!

1
On

It looks like the problem with the git-credential-manager which is installed along with the Git installation.

Uninstall Git, and then install again.

Select 'None' when "choose a credential Manager" screen to skip this issue.

Choose None instead of Git Credential Manager

1
On

Installing an old version worked for me, version Git-2.38.0-rc0-64-bit.exe to be specific.

0
On

I tried Git clone on a fresh installed Git Bash and was prompted with the same message. I guess it happens when trying to authenticate the user.

I resolved it by either using GitHub Desktop or installing older versions on Git Bash.

You can install older releases here: Git for Windows.

0
On

Actually the version 2.39 (released 3 days ago) is broken for Atlassian too with this error 'could not find UI helper "Atlassian.Bitbucket.UI"', and you won't be able to download from Visual Studio Code neither.

The only solution is download a previous version of Git, like 2.38.X.

2
On

I tried installing an older version (2.38.x) and it worked.

2
On

I have tried running the command in CMD, and it worked. Apparently it's because it can't show the options to authenticate.

2
On

Just delete Git from Control Panel and reinstall from the Git scm website, and then push. It will ask for authentication. Provide Git the email address and password. Now it solved the problem.

0
On

I was trying to clone a repository; passing credentials in the clone URL solved the issue for me.

The details are here.

1
On

I installed GitHub Desktop, and it solved the problem.

2
On

Cloning from the project location, instead of git bash, gave me the below three options and after selecting PAT (personal access token) and entering my PAT I was able to successfully clone my repository.

People, who don't know about PAT, can follow the below link.

Enter image description here

How to generate a personal access token

0
On

They fixed the issue with the v2.39.0(2) update. Mine is solved with this version. Check the patch notes:

The Git Credential Manager version shipped with Git for Windows v2.39.0 could not always find its UI helper which was fixed by upgrading to a fixed version.

0
On

I've also encountered a similar issue with Git for 2.39.0.windows.1.

A Git clone from an Atlassian cloud-hosted Bitbucket repository gave me a

warning: could not find UI helper 'Atlassian.Bitbucket.UI'

I uninstalled 2.39 and installed 2.38 with the links above and bam, Atlassian Bitbucket displays its Connect to Bitbucket login modal.