Slow start of GIT console

4

Good afternoon, I'm having trouble initializing my .git console. It takes a while to load it. When typing any command it takes about 30 s to 1 min. Thing until another day, it worked normal. Very fast in whatever action I did. I already reinstalled .git. They recommended using other commands:

git config --global user.name "Your Name"
git config --global user.email [email protected]
git commit --amend --reset-author
    
asked by anonymous 10.06.2015 / 19:28

1 answer

1

I assume you are using the git desktop application for windows, not the direct command line as it does in linux.

The git shell console that comes with git desktop for windows weighs much more on the computer than direct access via linux terminal. That's why, especially if your computer does not have great hardware capabilities, it takes quite a while to run simple commands.

I've suffered enough from this problem, especially on my weakest laptop. What I advise is to directly run the Git Shell program (Do not run the git shell from the git desktop because it is much heavier).

    
27.07.2015 / 18:27