Git 常用命令速查
Git 是最流行的版本控制系统,这里整理了常用的 Git 命令。 配置 # 设置用户名和邮箱 git config --global user.name "Your Name" git config --global user.email "your@email.com" # 查看配置 git config --list
Git 是最流行的版本控制系统,这里整理了常用的 Git 命令。 配置 # 设置用户名和邮箱 git config --global user.name "Your Name" git config --global user.email "your@email.com" # 查看配置 git config --list