Git crashing in windows

Asked

Viewed 1,236 times

1

Hello, I’m a beginner in the use of git, I installed it a first time and it worked normally, but I wanted to make some changes and could not, I decided to uninstall and install again, it didn’t work properly anymore, I uninstalled and installed many times, but it didn’t work properly.

When passing the mouse by gitbash or git GUI it hangs, when trying to move the scrollbar of gitbash with the mouse it hangs, when it hangs I have to close the window with the mouse and confirm in the windows window the close.

I’m trying and reading tutorials for 3 days, I don’t know what else I can do, will anyone help me?

  • Have you "reboot" windows? which version of windows?

  • Which version of Windows are you using? Which version of Git did you install? How did you install it (downloaded the installer, made it via Chocolatey)?

1 answer

1

See Control Panel > Programs > Uninstall a program, if Git is not installed. If you are removing.

On Windows I always do the installation via Chocolatey, it’s like the Debian package installer (apt-get).

For this access https://chocolatey.org/install, you will find several ways to install, and by installation read run a command line.

After you just call cuttlefish on the console, powershell or not, and the install command. You can also search choco list [what you want to install].

Use:

choco list git.install

The git install. has all the dependencies needed to install Git on Windows.

To install:

choco install git.install -y

or

cinst git.install -y

The -y argument already accepts permission to run the installation script.

Then to test just type git on the console. Open another console session for it to reload the environment variables that have the path to git. If it does not work remove using choco Uninstall -f, the -f key is to force uninstall.

Browser other questions tagged

You are not signed in. Login or sign up in order to post.