Linux 下 Git 配置
账户
git config --global user.name $USER_NAME
git config --global user.email $USER_EMAIL
SSH
ssh-keygen -t ed25519 -C $USER_EMAIL
默认公钥位置: $HOME/.ssh/id_ed25519.pub
git config --global user.name $USER_NAME
git config --global user.email $USER_EMAIL
ssh-keygen -t ed25519 -C $USER_EMAIL
默认公钥位置: $HOME/.ssh/id_ed25519.pub