chatgpt回答,无问题 配置SSH无密码登录涉及使用SSH密钥对进行身份验证。以下是步骤: 1. 生成SSH密钥对 在客户端机器上(即你要登录的机
关闭SIP以后还是有问题 没有效果 1 2 3 4 5 1. 重启 Mac 并在启动时按住 Command (⌘) + R 进入恢复模式。 2. 在恢复模式中打开终端(从菜单栏选择 Utilities > Termi
golang的中json,marshal byte数组会默认对byte数组进行base64编码,编码成string,重写MarshalJSON
服务以前连接mysql5.7,现在连接mysql8报错 1 2 3 4 code: 'ER_NOT_SUPPORTED_AUTH_MODE', errno: 1251, sqlState: '08004', sqlMessage: 'Client does not support authentication protocol requested by server; consider upgrading MySQL client' 原因: mysql5.7 认证默认是mysql_nati
Jetbrains全家桶 https://3.jetbra.in jetbra.zip-readme.txt 1 2 3 4 5 1. add -javaagent:/path/to/ja-netfilter.jar=jetbrains to your vmoptions (manual or auto) 2. log out of the jb account in the 'Licenses' window 3. use key on page https://jetbra.in/5d84466e31722979266057664941a71893322460 4. plugin 'mymap' has been deprecated since version 2022.1 5. don't care about the activation time, it is a fallback license and will not expire
git 每个仓库设置Git用户名 1 2 git config --global user.name "username" git config --global user.email "email address" 一个仓库设置Git用户名 1 2 git config user.name "username" git config user.email "email address" https://docs.github.com/cn/get-started/getting-started-with-git/setting-your-username-in-git 1 2 3 4 # 生成ssh-key ssh-keygen -t rsa -C "email address"