git最新版速查表,Git常用命令清单

2023-06-01 00:00:00 清单 最新版 常用命令

Git是一款免费、开源的分布式版本控制系统,用于敏捷高效地处理任何或小或大的项目

当前时间的最新版本是:

git version 2.36.1

git下载地址:

https://git-scm.com/downloads


文档说明

<> 表示【需替换的项】
[] 表示【非必填项】
| 表示【或】
工作树(工作区),索引(暂存区),Git 目录(HEAD) 三词含义参照 Git 官网


初始配置

git config --global user.name [<username>] 配置用户名
git config --global user.email [<email>] 配置邮箱
git config --global core.editor [<vim>] 配置编辑器


创建项目

git clone <options> 克隆远程仓库
git init [project] 初始化本地项目


添加

git add <file> 添加文件到暂存区
git commit -m <commit notes> 将暂存区的内容提交到 HEAD
git commit -am <commit notes> 将 add 和 commit 合并操作
git commit --amend -m <commit notes> 将 add 和 commit 合并操作且合并到上次 commit


显示

git status 显示状态
git diff [HEAD] 显示差异
git log 显示日志
git show <commit> 显示某个 commit 的详细内容
git blame <file> 显示文件每行的 commit 信息


撤回

git restore <file> 撤回工作区的修改
git restore --staged <file> 将已提交到暂存区的修改撤回工作区
git reset [--mixed] <commit> 将当前版本撤回到某个 commit,保留工作区的修改
git reset --soft <commit> 将当前版本撤回到某个 commit, 保留工作区和暂存区的修改
git reset --hard <commit> 将当前版本撤回到某一个 commit,不保留工作区的修改
git rm <file> 将文件从工作区和暂存区删除
git mv <file> 将文件从工作区和暂存区移动或改名


分支

git branch [--list] 显示所有分支
git branch -a 显示远程分支
git branch <branch> 创建分支
git branch -d|-D <branch> 删除分支
git branch -m <newbranch> 重命名当前分支
git switch <branch> 切换到已有分支
git switch -c <branch> 创建并切换分支
git merge <branch> 将某个分支合并到当前分支
git tag <tagname> 给当前分支打标签
git stash 将工作区的更改存储到脏工作目录中
git stash apply 将脏工作目录中的数据恢复到工作区(不会删除脏工作目录保存的数据)
git stash drop 将脏工作目录中的数据删除
git stash pop 将脏工作目录中的数据恢复工作区并删除脏数据


远程

git remote [-v] 显示远程库
git remote show <origin> 显示某个远程库的信息
git remote add <origin> <url> 添加远程库链接
git remote rm <origin> 删除远程库链接
git remote rename <oldname> <newname> 重命名远程库
git pull [<origin><branch>] 拉取远程库到本地库
git push [-u <origin> <master>] 将本地库推送到远程库
git push origin --delete <branch>|git push origin :crazy-experiment 删除远程分支
git fetch 从远程库获取到本地库


帮助

git help <command> 显示某个命令的详细使用文档
git <command> -h 显示某个命令的使用说明


checkout (该命令职责不明确,不建议使用)

git checkout <file> 丢弃工作区的修改
git checkout -f 强制丢弃工作区和暂存区的修改
git checkout <branch> 切换分支
git checkout -b <branch> 创建并切换分支

如有遗漏,可以在底部评论留言 3q!

相关文章