Git 安装配置

Git 安装配置

Git 官方网站为 https://git-scm.com,当前(2020-09-25)最新版本为 v2.28.0(发布于 2020-07-28)。

1. 下载

Git 各个平台的官方下载地址为 https://git-scm.com/downloads,以下以 Windows 平台为例。

Windows 平台 64 位版下载地址为 https://github.com/git-for-windows/git/releases/download/v2.28.0.windows.1/Git-2.28.0-64-bit.exe。

下载后得到文件 Git-2.28.0-64-bit.exe

2. 安装

双击下载的Git-2.28.0-64-bit.exe 安装即可,安装后目录结构如下:

/path-to/Git/
  ├── bin/
  │   ├── bash.exe
  │   ├── git.exe
  │   └── sh.exe
  ├── cmd/
  │   ├── git.exe
  │   ├── git-gui.exe
  │   ├── gitk.exe
  │   ├── git-lfs.exe
  │   ├── start-ssh-agent.cmd
  │   └── start-ssh-pageant.cmd
  ├── dev/*
  ├── etc/*
  ├── mingw64/*
  ├── usr/*
  ├── tmp/*
  ├── git-bash.exe
  ├── git-cmd.exe
  ├── ReleaseNotes.html
  └── ...

3. 配置系统环境变量

在命令行执行如下命令:

> git --version
git version 2.28.0.windows.1

如果上述命令执行成功,证明安装过程已自动设置好了,无需额外配置,否则需要将 /path-to/Git/cmd 这个路径添加到系统环境变量 Path 内:

打开系统属性窗口(如命令行执行 sysdm.cpl),切换到 "高级" 页签,然后点击 "环境变量(N)..." 按钮,然后将 /path-to/Git/cmd 添加到 Path 变量值的后面即可。

4. 更新

到官方网站下载最新版本重新安装即可。

5. 账号配置

# 全局设置提交时使用的身份标识信息
$ git config --global user.email "[email protected]"
$ git config --global user.name "yourName"

6. 配置代理(按需)

  • 官方文档:https://git-scm.com/docs/git-config#Documentation/git-config.txt-httpproxy
  • 功能:Override the HTTP proxy, normally configured using the http_proxy, https_proxy, and all_proxy environment variables.
# 全局设置格式
> git config --global http.proxy [protocol://][user[:password]@]proxyhost[:port]

# 例子
> git config --global http.proxy http://127.0.0.1:58591

# 取消全局设置
> git config --global --unset http.proxy

# 查看配置
> git config --list
> git config --get http.proxy

# clone a specific repository from socks5 proxy
> git clone https://github.com/xxxxx --config 'http.proxy=socks5://127.0.0.1:1234'

# passing everything through the proxy - uses socks5h instead of socks5
> git config --global http.proxy socks5h://127.0.0.1:1080

# 使用环境变量
$ ALL_PROXY=socks5://127.0.0.1:8888 git clone https://github.com/some/one.git

参考

你可能感兴趣的:(Git 安装配置)