常用命令
初始化
初始化设置用户名和邮箱
bash
# 设置用户名(全局配置)
git config --global user.name "Your Name"
# 设置邮箱(全局配置)
git config --global user.email "Your Email"
# 查看用户名
git config user.name
# 查看邮箱
git config user.email
# 查看当前用户的全局git配置
git config --global --list
1
2
3
4
5
6
7
8
9
10
11
12
2
3
4
5
6
7
8
9
10
11
12
创建仓库
创建一个新的本地仓库(省略 project_name
则在当前目录创建)
初始化之后会出现一个名为
.git
的隐藏文件夹,可以以此来判断当前项目是否被git
所管理
bash
git init <project_name>
1
克隆一个远程仓库
bash
git clone <repository_url>
1
查看状态
bash
# 【红色】还未上传至暂存区的文件、【绿色】已上传至暂存区的文件
git status
# 简洁版
git status -s
1
2
3
4
5
2
3
4
5
基本操作
添加文件到暂存区
bash
git add <file>
# 添加当前目录下所有扩展名为 `.txt` 的文件到暂存区
git add *.txt
# 递归添加所有 .txt文件(包括子目录中的)
git add '*.txt'
# 添加所有更改
git add .
1
2
3
4
5
6
7
8
9
10
2
3
4
5
6
7
8
9
10
提交更改
bash
# 只提交暂存区中的内容,不会提交工作区中的内容
git commit -m "message"
# 提交所有已修改的文件到仓库,`-a` 自动暂存所有已跟踪的文件(即那些已经被添加到仓库中的文件)中的更改,但不包括新文件(未跟踪文件)。
git commit -a -m "message"
-am
1
2
3
4
5
6
7
2
3
4
5
6
7
查看提交历史
bash
git log
# 查看简洁的提交记录
git log --oneline
# 查看分支图
git log --graph --oneline --decorate --all
1
2
3
4
5
6
7
2
3
4
5
6
7
分支操作
查看所有本地分支
bash
# 当前分支前面会有一个 * ,-r查看远程分支,-a查看所有分支
git branch
1
2
2
创建一个新分支
bash
git branch <branch-name>
1
切换到指定分支
bash
git checkout <branch-name>
git switch <branch-name>
1
2
2
创建一个新分支,并切换到该分支
bash
git checkout -b <branch-name>
# 创建一个新分支并立即切换到该分支,-c 是 --create 的简写
git switch -c <branch-name>
1
2
3
4
2
3
4
恢复分支到某一次提交的状态
sh
git checkout -b <branch-name> <commitId>
1
删除一个已经合并的分支
sh
git branch -d <branch-name>
1
删除一个分支,不管是否合并
sh
git branch -D <branch-name>
1
给当前提交打上标签,通常用于版本发布
bash
git tag <tag-name>
1
合并分支
merge后面的分支名称是将要被合并的分支,当前所在的分支就是合并后的目标分支。
sh
git merge <branch-name>
1
终止合并
一般情况下,如果两个分支的修改内容没有重合的部分的话,那么Git会帮我们自动完成合并,但是如果两个分支修改了同一个文件的同一行代码,Git就不知道应该保留哪个分支的修改内容了,也就产生了冲突,这个时候就需要我们手动来解决冲突。
sh
# 终止合并
git merge --abort
1
2
2
远程操作
查看远程仓库
bash
# 查看当前仓库所对应的远程仓库的别名和地址
git remote -v
1
2
2
添加远程仓库
bash
git remote add origin <repository_url>
1
推动到远程仓库
sh
git push origin <branch_name>
1
从远程仓库拉取更新
在执行完
git pull
命令之后,Git会自动为我们执行一次合并操作,如果远程仓库中的修改内容和本地仓库中的修改内容没有冲突的话,那么合并操作就会成功。否则,合并操作就会由于冲突而失败,这个时候就需要手动来解决一下冲突。
sh
git pull origin <branch_name>
1
查看
bash
git status
git log
git diff
1
2
3
4
5
2
3
4
5
回退版本
在日常开发的时候,经常会需要撤销之前的一些修改内容或者回退到之前的某一个版本,此时就可以使用 git reset
命令
git reset
命令有三种主要模式,它们分别是 --soft
、--hard
、--mixed
。这些模式影响 Git的暂存区和工作区目录,以及当前分支的 HEAD指针。
--soft
:表示回退到某一个版本(重置HEAD到指定的提交),并且保留工作区和暂存区的所有修改内容--hard
:表示回退到某一个版本,并且丢弃工作区和暂存区的所有修改内容。【谨慎使用】--mixed
:【默认模式】介于 soft 和 hard 这两个参数之间,它表示回退到某一个版本,并且只保留工作区的修改内容,而丢弃暂存区的修改内容。
模式 | 工作区 | 暂存区 |
---|---|---|
git reset --soft | ✅ | ✅ |
git reset --hard | ❌ | ❌ |
git reset --mixed | ✅ | ❌ |
bash
# 软
git reset --soft
# 硬
git reset --hard 前8位
# 混合
git reset --mixed
1
2
3
4
5
6
2
3
4
5
6
sh
echo 111 > file1.txt
echo 222 > file2.txt
echo 333 > file3.txt
# 将file1提交至暂存区
git add file1.text
git commit -m "commit1"
# 将file2提交至暂存区
git add file2.text
git commit -m "commit2"
# 将file3提交至暂存区
git add file3.text
git commit -m "commit3"
# 查看提交历史
git log --oneline
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
sh
cp -rf repo repo-soft
cp -rf repo repo-hard
cp -rf repo repo-mixed
git reset --soft xxxxxxx
git log --oneline
# 查看工作区的内容,三个文件都存在
ls
# 查看file3文件内容
cat file3.txt
# 查看暂存区的内容,三个文件都存在
git ls-files
#
git status
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
2
3
4
5
6
7
8
9
10
11
12
13
14
15
sh
git reset --hard HEAD^
# 查看提交历史,只有2次
git log --oneline
# 查看工作区的内容,发现file3不存在
ls
# 查看暂存区的内容,发现file3不存在
git ls-files
1
2
3
4
5
6
7
8
2
3
4
5
6
7
8
sh
git reset HEAD^
# 查看提交历史,只有2次
git log --oneline
# 查看工作区的内容,三个文件都存在
ls
# 查看暂存区的内容,发现file3不存在
git ls-files
1
2
3
4
5
6
7
2
3
4
5
6
7