Git基础入门学习笔记(未完结)

1.Git安装配置

①Git官方下载地址:https://git-scm.com/download/win
②点击"Git Bash Here"用户信息配置:

$ git config --global user.name "用户名"
$ git config --global user.email "邮箱地址"

③查看配置信息:

$ git config --list

④更改Notepad++为"Git Bash Here"默认编辑器:

git config --global core.editor "'S:/Program Files/Notepad++/notepad++.exe' -multiInst -notabbar -nosession -noPlugin"

你可能感兴趣的:(Tool,git)