Git安装

背景

Win10系统

安装

配置

  • 用户信息:

git config --global user.name "John Doe"

git config --global user.email [email protected]

  • 文本编辑器

git config --global core.editor notepad

  • 检测配置信息

git config --list

  • 获取帮助

    git help

    git --help

    man git-

    git help config