Git locking on windows

1

Hello, I am new to git, I installed it the first time and it worked normally, but I wanted to make some changes and could not, I decided to uninstall and install again, it did not work correctly anymore, I uninstalled and installed many times, but it did not work correctly.

When you go through gitbash or git GUI it hangs, when you try to move the gitbash scrollbar with the mouse it hangs, when it hangs I have to close the window with the mouse and confirm in the windows window to close it. / p>

I'm trying and reading tutorials for 3 days, I do not know what I can do anymore, can anyone help me?

    
asked by anonymous 20.08.2016 / 15:56

1 answer

1

See Control Panel > Programs > Uninstall a program if Git is not installed. If you remove it.

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

To do this go to link , you will find several ways to install, and per install read a command line.

After just calling choco in the console, powershell or not, and the install command. You can also search choco list .

Use:

  

choco list git.install

git.install has all the dependencies required to install Git on Windows.

To install:

  

choco install git.install -y

or

  

cinst git.install -y

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

Next to test just type git on the console. Open another console session 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 the uninstall.

    
23.08.2016 / 02:24