2

I am using now git in Windows 10, and when I try any command it takes lot of time. This is only the case in my office network. At home, everything work fine as it should be. Is there any extra configuration has to be done?

4
  • "Git Flow" is just a naming convention for branches, isn't it? It's not an app. Commented Feb 6, 2020 at 20:27
  • It is a convention for branches which is implemented and accessible through git bash for example Commented Feb 6, 2020 at 21:08
  • The Gitflow Workflow defines a strict branching model designed around the project release. Commented Feb 6, 2020 at 23:15
  • my situation is that my computer memory is high (98%) after the memory goes down to about 50~60 % git works nomrally Commented Nov 10, 2022 at 3:54

2 Answers 2

2

This is due to the fact that maybe you are behind a corporate proxy, also you cat try in your Git Bash to do echo $HOME and you should see different results when you are on the office network and on your home network, you can change this variable directly in git bash using: export HOME=\c\Users\<desired_path> (keep in mind this change will not be persistent).

Also a good thing is to check if your PATH has unnecessary things in it, which can slow things down:

Windows cmd: set %PATH%

Git Bash: echo $PATH

Sign up to request clarification or add additional context in comments.

Comments

0

This helpt me.

Uninstall git-bash. Remove the ..\program files\Git directory. Then reinstall by running the installer as administrator.

Comments

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.