Git - 基本使用方法
Author - yyz Create Time - 2024/06/06 Last Update Time - 2024/11/13 Git 0 基础设置 安装(Linux) sudo pacman -S git 绑定用户名 git config --global user.name "Username" 绑定邮箱 git config --global user.email "Email" 生成SSH ssh-keygen -t rsa -C "自定义昵称" ...