Git使用笔记
什么是git,git介绍和svn对比
https://www.liaoxuefeng.com/wiki/896043488029600/896067008724000
git安装(win)
下载安装包https://git-scm.com/download/win
选择自己喜欢的ide,然后安装一直next
安装完成打开bash

安装完成后,进行git配置
Git配置
查看版本
$ git –version
用户信息设置
在命令行输入:
$ git config --global user.name "Your Name"
$ git config --global user.email email@example.com
查看已有的配置信息
使用以下命令
$ git config --list
最下面的两行就是用户配置
也可以用这种方式
$ git config user.name
其他配置参考
https://www.runoob.com/git/git-install-setup.html
浙公网安备 33010602011771号