版本控制 | Git
一、Git 下载与配置 1.1 下载地址: Windows: https://git-scm.com/download/win Mac: https://git-scm.com/download/mac Linux/Unix: https://git-scm.com/download/linux 1.2 配置 /*配置 user.name 和 user.email*/ $ git config --global user.name ‘your_name’ $ git config --global user.email ‘your_email@domain.com’ $ git config --local user.name ‘your_name’ # local 只对某个仓库有效 $ git config --global user.name ‘your_name’ # global 对当前用户所有仓库有效 $ git config --system user.name ‘your_name’ # system 对系统所有登录的用户有效 优先级排序:local > global /*查看配置信息*/ $ git config --list --local $ git config --list --global $ git config --list --system 二、建立