共计 7122 个字符,预计需要花费 18 分钟才能阅读完成。
我平时应用 Git 的时候,很多的 Git 命令我都不是很罕用,工作中个别咱们会配合一些可视化工具,或者编辑器自带的一些插件去保护 Git 仓库,然而咱们也要记得一些罕用 Git 命令来应变一些非凡的场景,上面是我收录整顿的罕用和不罕用的一些 Git 命令,心愿能帮忙到大家更好的把握 Git 的应用,如果文章和笔记能带您一丝帮忙或者启发,请不要悭吝你的赞和珍藏,你的必定是我后退的最大能源😁
- 附笔记链接,浏览往期更多优质文章可移步查看,喜爱的能够给我点赞激励哦:https://github.com/Wscats/CV/issues/31
新建
创立一个新的 git 版本库。这个版本库的配置、存储等信息会被保留到.git 文件夹中
# 初始化以后我的项目
$ git init
# 新建一个目录,将其初始化为 Git 代码库
$ git init [project-name]
# 在指定目录创立一个空的 Git 仓库。运行这个命令会创立一个名为 directory,只蕴含 .git 子目录的空目录。$ git init --bare <directory>
# 下载一个我的项目和它的整个代码历史
# 这个命令就是将一个版本库拷贝到另一个目录中,同时也将分支都拷贝到新的版本库中。这样就能够在新的版本库中提交到近程分支
$ git clone [url]
配置
更改设置。能够是版本库的设置,也能够是零碎的或全局的
# 显示以后的 Git 配置
$ git config --list
# 编辑 Git 配置文件
$ git config -e [--global]
# 输入、设置根本的全局变量
$ git config --global user.email
$ git config --global user.name
$ git config --global user.email "MyEmail@gmail.com"
$ git config --global user.name "My Name"
# 定义以后用户所有提交应用的作者邮箱。$ git config --global alias.<alias-name> <git-command>
# 为 Git 命令创立一个快捷方式(别名)。$ git config --system core.editor <editor>
帮忙
git 内置了对命令十分具体的解释,能够供咱们疾速查阅
# 查找可用命令
$ git help
# 查找所有可用命令
$ git help -a
# 在文档当中查找特定的命令
# git help < 命令 >
$ git help add
$ git help commit
$ git help init
状态
显示索引文件(也就是当前工作空间)和以后的头指针指向的提交的不同
# 显示分支,未跟踪文件,更改和其余不同
$ git status
# 查看其余的 git status 的用法
$ git help status
信息
获取某些文件,某些分支,某次提交等 git 信息
# 显示 commit 历史,以及每次 commit 产生变更的文件
$ git log --stat
# 搜寻提交历史,依据关键词
$ git log -S [keyword]
# 显示某个 commit 之后的所有变动,每个 commit 占据一行
$ git log [tag] HEAD --pretty=format:%s
# 显示某个 commit 之后的所有变动,其 "提交阐明" 必须合乎搜寻条件
$ git log [tag] HEAD --grep feature
# 显示某个文件的版本历史,包含文件改名
$ git log --follow [file]
$ git whatchanged [file]
# 显示指定文件相干的每一次 diff
$ git log -p [file]
# 显示过来 5 次提交
$ git log -5 --pretty --oneline
# 显示所有提交过的用户,按提交次数排序
$ git shortlog -sn
# 显示指定文件是什么人在什么工夫批改过
$ git blame [file]
# 显示暂存区和工作区的差别
$ git diff
# 显示暂存区和上一个 commit 的差别
$ git diff --cached [file]
# 显示工作区与以后分支最新 commit 之间的差别
$ git diff HEAD
# 显示两次提交之间的差别
$ git diff [first-branch]...[second-branch]
# 显示明天你写了多少行代码
$ git diff --shortstat "@{0 day ago}"
# 比拟暂存区和版本库差别
$ git diff --staged
# 比拟暂存区和版本库差别
$ git diff --cached
# 仅仅比拟统计信息
$ git diff --stat
# 显示某次提交的元数据和内容变动
$ git show [commit]
# 显示某次提交发生变化的文件
$ git show --name-only [commit]
# 显示某次提交时,某个文件的内容
$ git show [commit]:[filename]
# 显示以后分支的最近几次提交
$ git reflog
# 查看近程分支
$ git br -r
# 创立新的分支
$ git br <new_branch>
# 查看各个分支最初提交信息
$ git br -v
# 查看曾经被合并到以后分支的分支
$ git br --merged
# 查看尚未被合并到以后分支的分支
$ git br --no-merged
增加
增加文件到当前工作空间中。如果你不应用 git add
将文件增加进去,那么这些文件也不会增加到之后的提交之中
# 增加一个文件
$ git add test.js
# 增加一个子目录中的文件
$ git add /path/to/file/test.js
# 反对正则表达式
$ git add ./*.js
# 增加指定文件到暂存区
$ git add [file1] [file2] ...
# 增加指定目录到暂存区,包含子目录
$ git add [dir]
# 增加当前目录的所有文件到暂存区
$ git add .
# 增加每个变动前,都会要求确认
# 对于同一个文件的多处变动,能够实现分次提交
$ git add -p
删除
rm 和下面的 add 命令相同,从工作空间中去掉某个文件
# 移除 HelloWorld.js
$ git rm HelloWorld.js
# 移除子目录中的文件
$ git rm /pather/to/the/file/HelloWorld.js
# 删除工作区文件,并且将这次删除放入暂存区
$ git rm [file1] [file2] ...
# 进行追踪指定文件,但该文件会保留在工作区
$ git rm --cached [file]
分支
治理分支,能够通过下列命令对分支进行增删改查切换等
# 查看所有的分支和近程分支
$ git branch -a
# 创立一个新的分支
$ git branch [branch-name]
# 重命名分支
# git branch -m < 旧名称 > < 新名称 >
$ git branch -m [branch-name] [new-branch-name]
# 编辑分支的介绍
$ git branch [branch-name] --edit-description
# 列出所有本地分支
$ git branch
# 列出所有近程分支
$ git branch -r
# 新建一个分支,但仍然停留在以后分支
$ git branch [branch-name]
# 新建一个分支,并切换到该分支
$ git checkout -b [branch]
# 新建一个分支,指向指定 commit
$ git branch [branch] [commit]
# 新建一个分支,与指定的近程分支建设追踪关系
$ git branch --track [branch] [remote-branch]
# 切换到指定分支,并更新工作区
$ git checkout [branch-name]
# 切换到上一个分支
$ git checkout -
# 建设追踪关系,在现有分支与指定的近程分支之间
$ git branch --set-upstream [branch] [remote-branch]
# 合并指定分支到以后分支
$ git merge [branch]
# 抉择一个 commit,合并进以后分支
$ git cherry-pick [commit]
# 删除分支
$ git branch -d [branch-name]
# 删除近程分支
$ git push origin --delete [branch-name]
$ git branch -dr [remote/branch]
# 切换到某个分支
$ git co <branch>
# 创立新的分支,并且切换过来
$ git co -b <new_branch>
# 基于 branch 创立新的 new_branch
$ git co -b <new_branch> <branch>
# 把某次历史提交记录 checkout 进去,但无分支信息,切换到其余分支会主动删除
$ git co $id
# 把某次历史提交记录 checkout 进去,创立成一个分支
$ git co $id -b <new_branch>
# 删除某个分支
$ git br -d <branch>
# 强制删除某个分支 (未被合并的分支被删除的时候须要强制)
$ git br -D <branch>
检出
将当前工作空间更新到索引所标识的或者某一特定的工作空间
# 检出一个版本库,默认将更新到 master 分支
$ git checkout
# 检出到一个特定的分支
$ git checkout branchName
# 新建一个分支,并且切换过来,相当于 "git branch < 名字 >; git checkout < 名字 >"
$ git checkout -b newBranch
近程同步
近程同步的远端分支
# 下载近程仓库的所有变动
$ git fetch [remote]
# 显示所有近程仓库
$ git remote -v
# 显示某个近程仓库的信息
$ git remote show [remote]
# 减少一个新的近程仓库,并命名
$ git remote add [shortname] [url]
# 查看近程服务器地址和仓库名称
$ git remote -v
# 增加近程仓库地址
$ git remote add origin git@ github:xxx/xxx.git
# 设置近程仓库地址(用于批改近程仓库地址)
$ git remote set-url origin git@ github.com:xxx/xxx.git
# 删除近程仓库
$ git remote rm <repository>
# 上传本地指定分支到近程仓库
# 把本地的分支更新到远端 origin 的 master 分支上
# git push < 远端 > < 分支 >
# git push 相当于 git push origin master
$ git push [remote] [branch]
# 强行推送以后分支到近程仓库,即便有抵触
$ git push [remote] --force
# 推送所有分支到近程仓库
$ git push [remote] --all
撤销
# 复原暂存区的指定文件到工作区
$ git checkout [file]
# 复原某个 commit 的指定文件到暂存区和工作区
$ git checkout [commit] [file]
# 复原暂存区的所有文件到工作区
$ git checkout .
# 重置暂存区的指定文件,与上一次 commit 保持一致,但工作区不变
$ git reset [file]
# 重置暂存区与工作区,与上一次 commit 保持一致
$ git reset --hard
# 重置以后分支的指针为指定 commit,同时重置暂存区,但工作区不变
$ git reset [commit]
# 重置以后分支的 HEAD 为指定 commit,同时重置暂存区和工作区,与指定 commit 统一
$ git reset --hard [commit]
# 重置以后 HEAD 为指定 commit,但放弃暂存区和工作区不变
$ git reset --keep [commit]
# 新建一个 commit,用来撤销指定 commit
# 后者的所有变动都将被前者对消,并且利用到以后分支
$ git revert [commit]
# 复原最初一次提交的状态
$ git revert HEAD
# 临时将未提交的变动移除,稍后再移入
$ git stash
$ git stash pop
# 列所有 stash
$ git stash list
# 复原暂存的内容
$ git stash apply
# 删除暂存区
$ git stash drop
commit
将以后索引的更改保留为一个新的提交,这个提交包含用户做出的更改与信息
# 提交暂存区到仓库区附带提交信息
$ git commit -m [message]
# 提交暂存区的指定文件到仓库区
$ git commit [file1] [file2] ... -m [message]
# 提交工作区自上次 commit 之后的变动,间接到仓库区
$ git commit -a
# 提交时显示所有 diff 信息
$ git commit -v
# 应用一次新的 commit,代替上一次提交
# 如果代码没有任何新变动,则用来改写上一次 commit 的提交信息
$ git commit --amend -m [message]
# 重做上一次 commit,并包含指定文件的新变动
$ git commit --amend [file1] [file2] ...
diff
显示当前工作空间和提交的不同
# 显示工作目录和索引的不同
$ git diff
# 显示索引和最近一次提交的不同
$ git diff --cached
# 显示工作目录和最近一次提交的不同
$ git diff HEAD
grep
能够在版本库中疾速查找
可选配置:
# 感激 Travis Jeffery 提供的以下用法:# 在搜寻后果中显示行号
$ git config --global grep.lineNumber true
# 是搜寻后果可读性更好
$ git config --global alias.g "grep --break --heading --line-number"
# 在所有的 java 中查找 variableName
$ git grep 'variableName' -- '*.java'
# 搜寻蕴含 "arrayListName" 和, "add" 或 "remove" 的所有行
$ git grep -e 'arrayListName' --and \(-e add -e remove \)
log
显示这个版本库的所有提交
# 显示所有提交
$ git log
# 显示某几条提交信息
$ git log -n 10
# 仅显示合并提交
$ git log --merges
# 查看该文件每次提交记录
$ git log <file>
# 查看每次具体批改内容的 diff
$ git log -p <file>
# 查看最近两次具体批改内容的 diff
$ git log -p -2
#查看提交统计信息
$ git log --stat
merge
合并就是将内部的提交合并到本人的分支中
# 将其余分支合并到以后分支
$ git merge branchName
# 在合并时创立一个新的合并后的提交
# 不要 Fast-Foward 合并,这样能够生成 merge 提交
$ git merge --no-ff branchName
mv
重命名或挪动一个文件
# 重命名
$ git mv test.js test2.js
# 挪动
$ git mv test.js ./new/path/test.js
# 改名文件,并且将这个改名放入暂存区
$ git mv [file-original] [file-renamed]
# 强制重命名或挪动
# 这个文件曾经存在,将要笼罩掉
$ git mv -f myFile existingFile
tag
# 列出所有 tag
$ git tag
# 新建一个 tag 在以后 commit
$ git tag [tag]
# 新建一个 tag 在指定 commit
$ git tag [tag] [commit]
# 删除本地 tag
$ git tag -d [tag]
# 删除近程 tag
$ git push origin :refs/tags/[tagName]
# 查看 tag 信息
$ git show [tag]
# 提交指定 tag
$ git push [remote] [tag]
# 提交所有 tag
$ git push [remote] --tags
# 新建一个分支,指向某个 tag
$ git checkout -b [branch] [tag]
pull
从远端版本库合并到以后分支
# 从远端 origin 的 master 分支更新版本库
# git pull < 远端 > < 分支 >
$ git pull origin master
# 抓取近程仓库所有分支更新并合并到本地,不要快进合并
$ git pull --no-ff
ci
$ git ci <file>
$ git ci .
# 将 git add, git rm 和 git ci 等操作都合并在一起做
$ git ci -a
$ git ci -am "some comments"
# 批改最初一次提交记录
$ git ci --amend
rebase (审慎应用)
将一个分支上所有的提交历史都利用到另一个分支上
_不要在一个曾经公开的远端分支上应用 rebase_.
# 将 experimentBranch 利用到 master 下面
# git rebase <basebranch> <topicbranch>
$ git rebase master experimentBranch
reset (审慎应用)
将以后的头指针复位到一个特定的状态。这样能够使你撤销 merge、pull、commits、add 等
这是个很弱小的命令,然而在应用时肯定要分明其所产生的结果
# 使 staging 区域复原到上次提交时的状态,不扭转当初的工作目录
$ git reset
# 使 staging 区域复原到上次提交时的状态,笼罩当初的工作目录
$ git reset --hard
# 将以后分支复原到某次提交,不扭转当初的工作目录
# 在工作目录中所有的扭转依然存在
$ git reset dha78as
# 将以后分支复原到某次提交,笼罩当初的工作目录
# 并且删除所有未提交的扭转和指定提交之后的所有提交
$ git reset --hard dha78as
其余
# 生成一个可供公布的压缩包
$ git archive
# 打补丁
$ git apply ../sync.patch
# 测试补丁是否胜利
$ git apply --check ../sync.patch
# 查看 Git 的版本
$ git --version
参考文档
- 罕用 Git 命令清单
- 📔 Linux、MySQL、Nginx、PHP、Git、Shell 等笔记