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?
- "Git Flow" is just a naming convention for branches, isn't it? It's not an app.ceejayoz– ceejayoz2020-02-06 20:27:26 +00:00Commented Feb 6, 2020 at 20:27
- It is a convention for branches which is implemented and accessible through git bash for exampleMickey– Mickey2020-02-06 21:08:47 +00:00Commented Feb 6, 2020 at 21:08
- The Gitflow Workflow defines a strict branching model designed around the project release.dejanualex– dejanualex2020-02-06 23:15:11 +00:00Commented 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 nomrallyfrank_lee– frank_lee2022-11-10 03:54:02 +00:00Commented Nov 10, 2022 at 3:54
Add a comment |
2 Answers
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