对本地计算机里面安装的GIt进行设置.
通过在终端输入:
mj@mj-OMEN-by-HP-Laptop-15-dc0xxx:~$ git
usage: git [--version] [--help] [-C <path>] [-c name=value]
[--exec-path[=<path>]] [--html-path] [--man-path] [--info-path]
[-p | --paginate | --no-pager] [--no-replace-objects] [--bare]
[--git-dir=<path>] [--work-tree=<path>] [--namespace=<name>]
<command> [<args>]
mj@mj-OMEN-by-HP-Laptop-15-dc0xxx:~$ git --version
git version 2.7.4
查看是否已经安装了Git
1,设置姓名和邮箱
$git config --global user.name "Firstname Lastname"
$git config --global user.email "youremial@example.com"
2,提高名输出的可读性
$git config --global color.ui auto
3,可以通过一下命令查看config设置
$git config --list
user.name=Firstname Lastname
us