# spring-cram **Repository Path**: MeiJM/spring-cram ## Basic Information - **Project Name**: spring-cram - **Description**: No description available - **Primary Language**: Unknown - **License**: MulanPSL-2.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 1 - **Forks**: 1 - **Created**: 2020-10-27 - **Last Updated**: 2025-05-19 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # 简介 spring学习记录 第一条:这条会报错,继续下一条命令 ```shell git config http.sslVerify "false" ``` 第二条: ```shell git config --global http.sslVerify "false" ``` 设置代理: ``` git config --global http.proxy 'socks5://127.0.0.1:49776' ``` ``` git config --global https.proxy 'socks5://127.0.0.1:49776' ``` 查看代理: ``` git config --global --get http.proxy git config --global --get https.proxy ``` 取消代理: ``` git config --global --unset http.proxy git config --global --unset https.proxy ```