github release加速下载 https://shrill-pond-3e81.hunsh.workers.dev/

springboot与springcloud版本对应 https://start.spring.io/actuator/info

快捷键 win + R ,输入:SYSTEMPROPERTIESADVANCED ,回车。

规范性文件、文件夹命名系统,用以解决文件整理、存档、检索的问题【元数据文件命名法】:https://meta.appinn.net/t/topic/27003

当git push报22端口连不上时,可执行如下操作。
创建或修改~/.ssh/config文件。

# 原来就配置好的,使用22端口
# github.com
Host github.com
    HostName github.com
    PreferredAuthentications publickey
    IdentityFile ~/.ssh/id_rsa_github

# 当22端口不能使用时,添加本段配置
# ssh.github.com
Host ssh.github.com
    HostName ssh.github.com
    PreferredAuthentications publickey
    IdentityFile ~/.ssh/id_rsa_github
    Port 443

并去修改代码的.git/config文件,找到git@github.com:YOURNAME/YOUREPO.git修改为git@ssh.github.com:YOURNAME/YOUREPO.git。再次尝试pull/push,可以发现成功了。

作者:admin  创建时间:2024-12-08 12:18
最后编辑:admin  更新时间:2025-09-19 10:08