配置用户名 公共配置:对所有项目生效 $ git config --global user.name "Your Name" $ git config --global user.email "email@example.com" 单独配置:对当前项目生效 $ git config user.name "Your Name" $ git config user.email "email@example.com" #cd /Users/ge/.ssh #touch config #vi config config内容如下 More
git分支切换,查看 查看提交历史 git log 查看分支 git branch -a 切换分支 git checkout dev git clone git@github.com:yuexiaosheng/time-machine.git $ ssh-keygen -t rsa -C "yuexiaosheng##163.com" 备注:##是要变成@,防止网络爬虫,读者见谅 后面的邮箱即为 github 注册邮箱,之后会要求确认路径和输入密码,一路回车就行。 成功的话会在 ~/ More