Video Test

[!NOTE] Highlights information that users should take into account, even when skimming. [!IMPORTANT] Crucial information necessary for users to succeed. [!WARNING] Critical content demanding immediate user attention due to potential risks. Reference https://dev.to/hi_artem/add-a-video-to-your-hugo-website-104 https://gohugo.io/templates/shortcode-templates/

October 24, 2023 · 1 min · 34 words · Leon.yan

在同一台设备上同时设置多个git账号

0 介绍 经常有这样的情况,需要在同一台设备上同时用多个git账号来工作,今天就尝试来解决这个问题。 git支持 https 和 ssh 协议,要解决上面的需求一般就选择 ssh 协议比较好。 1 配置文件 ssh有一个配置文件,默认是 ~/.ssh/config,里面配置了各个 ssh 账号的信息, 包括 Host, 密钥等。 例如: Host * AddKeysToAgent yes UseKeychain yes IdentityFile ~/.ssh/id_ed25519 2 新增一个配置 ssh-keygen -t ed25519 -C "demo@gmail.com" 然后就可以在 ~/.ssh/ 下面看到新增了一个私钥和一个公钥,然后将公钥上传到 github 的 Profile -> SSH and GPG keys -> New SSH key 3 修改 ssh config文件 Host demo HostName github.com AddKeysToAgent yes UseKeychain yes IdentityFile ~/.ssh/id_demo_ed25519 4 将私钥加入ssh ssh-add ~/.ssh/id_demo_ed25519 5 Clone 加入我们对应的项目, 例如在 github 上的remote地址为:...

October 13, 2023 · 1 min · 83 words · Leon.yan