Git常用命令

1.基础操作

克隆项目

1
2
3
4
// 常规用法
git clone [url]
// 同时克隆子模块并更新子模块
git clone --recurse-submodules <url>

.gitingore忽略文件

1
2
3
4
# 忽略根目录下的bin文件夹中的所有文件
/bin
# 忽略全部.c后缀的文件
*.c

提交暂存区

1
2
3
4
// 提交单个文件到暂存区
git add <file>
// 提交全部文件到暂存区
git add .

检查提交状态

1
git status

本地提交

1
git commit -m "提交说明"

远程提交

1
2
3
4
5
6
7
8
// 查看当前的远程仓库
git remote -v
// 新增远程仓库
git remote add origin <XXX.git>
// 删除远程仓库
git remote rm <仓库别名>
// 提交到远程仓库
git push origin main

2.分支管理

查看当前分支

1
git branch

新建分支

1
git branch <分支名>

切换分支

1
git checkout <分支名> 

合并分支

1
git merge <待合并的分支名>

删除分支

1
git branch -d <分支名>

3.版本管理

提交历史

1
2
3
4
5
6
// 常规模式
git log
// 精简模式
git log --pretty=oneline
// 查看所有操作的历史
git reflog

为提交打标签

1
git tag -a <提交版本号>

删除标签

1
git tag -d <标签名>

回滚版本

1
git reset --hard <提交版本号>

回滚指定文件

需要在文件所在目录中执行操作

1
git reset --hard <提交版本号> filename

撤回在本地commit的内容

1
2
// 撤销上一次提交
git reset HEAD^

Git常用命令
http://helloymf.github.io/2023/03/21/git-chang-yong-ming-ling/
作者
JNZ
许可协议