美文网首页Android Utils
查找 git commit 里的变动内容

查找 git commit 里的变动内容

作者: 几千里也 | 来源:发表于2017-11-10 17:54 被阅读0次

所谓的 poor solution

git log -p | grep <pattern>

能应付绝大多数场景

git grep <regexp> $(git rev-list --all)

针对 commit message

git log --grep=word

有点高级了

git log -Sword
// or
git log -Gword

StackOverflow 是好朋友

How to grep (search) committed code in the git history?
How to grep Git commit diffs or contents for a certain word?

相关文章

  • 查找 git commit 里的变动内容

    所谓的 poor solution 能应付绝大多数场景 针对 commit message 有点高级了 Stack...

  • git 恢复分支(branch)

    查找到误删除的git branch的commit点`git log --branches="xxbranch"` ...

  • git 入门篇

    git init git add 把当前目录(.表示当前目录)里面的变动都加到「暂存区」 git commit -...

  • 使用git别名

    在之前的内容里,我们不断使用了下面这些git命令: git add git commit -m git statu...

  • git 撤销git commit(内含车协git add)

    撤销git commit 只是撤销commit, git add里面的内容仍然存在,这种功能类似于用来更改git ...

  • Git

    常用: git add .git commit -m "内容"git push -u origin master ...

  • gitee 基本操作

    git init git add . git commit -m "添加此次更新的内容备注" git remote...

  • git命令小结

    常用指令 git add . //新建git commit -m "提交内容注释" -a ...

  • git篇之commit

    git commit - 提交说明 ---> 将暂存区内容添加到本地仓库中 git commit -a -m "提...

  • git 撤销 push

    在git push的时候,有时候我们会想办法撤销git commit的内容1、找到之前提交的git commit的...

网友评论

    本文标题:查找 git commit 里的变动内容

    本文链接:https://www.haomeiwen.com/subject/rufimxtx.html