AI-generated summary
The document provides instructions on configuring Git settings, specifically for setting a username and email globally, checking current configurations, and enabling proxy settings.
1. **Set Username and Email**: Use `git config --global user.name "your_username"` and `git config --global user.email "your_email"` to set your global username and email.
2. **View Current Configuration**: Use `git config --list` to see the current terminal configuration.
3. **Enable Proxy**:
- For SOCKS proxy: `git config --global http.proxy 'socks5://127.0.0.1:7890'` and `git config --global https.proxy 'socks5://127.0.0.1:7890'`.
- For HTTP proxy: Use `git config --global http.proxy 'http://127.0.0.1:12346'` or `http://127.0.0.1:7890`.
4. **Check Proxy Settings**: Use `git config --global --get http.proxy` and `git config --global --get https.proxy`.
5. **Unset Proxy**: Use `git config --global --unset http.proxy` and `git config --global --unset https.proxy` to remove proxy settings.