git相关问题记录

3次阅读

共计 220 个字符,预计需要花费 1 分钟才能阅读完成。

1.windows 下载地址:git 下载地址
2. 安装后随意文件夹右键是否有这两个选择,有则是安装成功
3. 安装成功后还需要配置 git 的邮箱及名字(名字随意打,邮箱是 git 账号的邮箱)
tips:git config 中的 --global 表示这台机器上的所有 git 仓库都会使用这个配置

$ git config --global user.name "Your Name"
$ git config --global user.email "email@example.com"
正文完
 0