Git安装
背景
Win10系统
安装
跟着Pro git下载Git
Pro git:http://git-scm.com/book/zh/v2/%E8%B5%B7%E6%AD%A5-%E5%AE%89%E8%A3%85-Git
- 自动识别下载,好牛。。选择桌面生图标,以便使用,出现Gitbash
配置
- 用户信息:
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