👋 Welcome! This is a private page for you to play around with.
😝https://www.notion.so/Get-Started-8ea9055a94d9452a95b7ee7a61166d61
☺️
😃
/
[x] Add a new line and insert something
Give these things a try:
[ ]
[x] Drag the ⋮⋮ button on the left of this to-do to reorder
[x] Right-click and delete something
[x] Type '/' for slash commands
[x] Create subpages inside a page
/
🙋
#Question#
[ ] [ ]#折腾# ❓ 为什么 vscode push 仓库经常失败???我用 vscode 常常不能 push git,用 github desktop 就没问题,所以是因为之前 vscode 没设置代理吗?
vscode 设置
终端设置
配置
set http_proxy=socks5://127.0.0.1:10809
set https_proxy=socks5://127.0.0.1:10809
恢复
set http_proxy=
set https_proxy=
git bash
export http_proxy=http://127.0.0.1:10809
export https_proxy=http://127.0.0.1:10809
一般常见的代理软件本地代理参数为"http://127.0.0.1:1080"或者 "http://localhost:1080",根据自己的端口和 IP 作出相应的调整,注意不要省略“http://”。