白乐天

道阻且长,行则将至。

Git指南

安装配置

Win

官网下载安装

Git - Downloading Package

Linux

命令安装

1
apt install git

验证安装

1
git --version

配置

关于配置文件

  • 系统配置文件/etc/gitconfig

    在使用git config时使用--system选项

  • 用户配置文件~/.gitconfig

    在使用git config时使用--global选项

  • 当前目录配置文件.git/congfig

配置用户信息

1
2
git config --global user.name "bileton"
git config --global user.email xxx@xxx.com

查看配置信息

1
git config --list

生成SSH密钥

如果需要通过 SSH 进行 Git 操作,可以生成 SSH 密钥并添加到 Git 托管服务(如 GitHub、GitLab 等)上。

1
ssh-keygen -t rsa -C "email"

配置代理

1
2
git config --global http.proxy 127.0.0.1:xxxx
git config --global https.proxy 127.0.0.1:xxxx

取消代理

1
2
git config --global --unset http.proxy
git config --global --unset https.proxy

创建仓库

创建一个目录,用来作为仓库

1
2
mkdir my-project
cd my-project

git init

使用当前目录作为 Git 仓库,只需使它初始化。

1
git init

该命令执行完后会在当前目录生成一个 .git 目录。

如果想指定目录作为git仓库,使用如下命令

1
git init newrepo

初始化后,会在 newrepo 目录下会出现一个名为 .git 的目录,所有 Git 需要的数据和资源都存放在这个目录中。

基本操作

克隆项目(下载项目)

1
git clone xxx

切换分支

1
git checkout xxx

管理包含其他 Git 仓库的项目

1
2
3
4
5
6
7
8
9
10
11
12
13
14
列出子模块
git submodule

初始化子模块
git submodule init

更新子模块
git submodule update

更新所有子模块
git submodule update --recursive --remote

查看子模块状态
git submodule status