我非常擅长使用git bash,并且正在阅读Spring Boot教程,在这里给出: https://spring.io/guides/gs/spring-boot/
我尝试执行:
curl localhost:8080
但收到以下消息:
$ curl localhost:8080
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
0 0 0 0 0 0 0 0 --:--:-- 0:00:01 --:--:-- 0curl: (7) Failed to connect to localhost port 8080: Connection refused
我已经尝试过这样做来解决这个问题,但没有运气:
# Get system value
$ git config --system --get https.proxy
$ git config --system --get http.proxy
# Get global value
$ git config --global --get https.proxy
$ git config --global --get http.proxy
# Check configuration for your user
$ cat $HOME/.gitconfig
# Unset system value
$ git config --system --unset https.proxy
$ git config --system --unset http.proxy
# Unset global value
$ git config --global --unset https.proxy
$ git config --global --unset http.proxy
有关如何解决此问题的任何建议? (如果可能,请简化步骤,我最近开始使用git!:))