在开始使用 Git 之前,我们需要先安装并配置 Git。本章将介绍如何在不同操作系统上安装 Git,并进行基本的配置。
Windows
安装 Git
- 访问 Git 官网(https://git-scm.com/)下载最新版本的 Git 安装程序。
- 双击运行下载的安装程序,按照提示完成安装。
- 在安装过程中,可以选择使用 Git Bash 或 Git GUI 作为 Git 的命令行工具。
配置 Git
- 打开 Git Bash 或 Git GUI。
- 配置用户名和邮箱地址:
git config --global user.name "Your Name" git config --global user.email "youremail@example.com"
- 配置默认文本编辑器:
git config --global core.editor "notepad"
- 查看配置信息:
git config --list
macOS
安装 Git
- 使用 Homebrew 安装 Git:
brew install git
配置 Git
- 打开终端。
- 配置用户名和邮箱地址:
git config --global user.name "Your Name" git config --global user.email "youremail@example.com"
- 配置默认文本编辑器:
git config --global core.editor "nano"
- 查看配置信息:
git config --list
Linux
安装 Git
- 使用包管理器安装 Git(以 Ubuntu 为例):
sudo apt-get update sudo apt-get install git
配置 Git
- 打开终端。
- 配置用户名和邮箱地址:
git config --global user.name "Your Name" git config --global user.email "youremail@example.com"
- 配置默认文本编辑器:
git config --global core.editor "vim"
- 查看配置信息:
git config --list
通过以上步骤,我们成功安装并配置了 Git,并且可以开始使用 Git 进行版本控制操作。