问题标签 [git-grep]

For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.

0 投票
0 回答
70 浏览

git - Hoogle Git 存储库

有没有一种方法不仅可以在当前工作集上使用类型签名搜索,还可以在项目的整个历史上使用?

目的是找到并可能回收以前编写和测试过的 Haskell 函数,但由于缺乏使用/需要而被删除。

0 投票
0 回答
219 浏览

git - 如何摆脱 git grep 中的 iine (end) 以及如何与排除标准一起使用?

我执行这个命令:

而且我不会回到壳牌。最后有“线(end)”。

  1. 如何在没有 git grep -Ee "alex" -- bin | more或终止进程的情况下摆脱 iine (结束)?因为我想保存匹配的颜色。

  2. 此外,我不明白 --exclude-standard 和 --no-exclude-standard 的含义。当我使用或不使用这些标志时,我得到相同的结果。

  3. 例如,如何在行 /* */ 之间跳过模式

git grep alex 将跳过

0 投票
1 回答
44 浏览

git - 我想在 /* */ 或其他之间的评论中跳过模式

我想跳过评论之间的模式/* */或其他。例如 f:

命令:

仅打印:

我更喜欢与 git grep 一起使用。

0 投票
2 回答
95 浏览

git - 一次在 Git 中搜索多个哈希

我刚刚得到一个指令来恢复一堆提交的代码。好消息是所有提交都有一个参考字符串,例如:

这个推荐会给我其中一个,我如何修改 grep 推荐以找到它们?

0 投票
1 回答
21 浏览

git - 找出最后一次使用变量的时间是从 git repo 中删除的

我的代码中有一个未使用的变量,我想知道事情是怎么变成这样的。我可以使用 git grep (或其他东西)轻松找出吗?

0 投票
1 回答
222 浏览

git - 如何编写一个将字符串作为参数的 git 别名

我想为以下内容写一个 git 别名:

到目前为止,我所拥有的是:

这完美地回显了字符串但给出了错误,我似乎无法弄清楚如何将字符串传递给 grep 标志。

如果有任何区别,我正在使用 zsh 。. .

0 投票
2 回答
374 浏览

git - git-grep not using multiple threads

I am trying to use git grep to search all revisions of a very large repository. The command I am using is:

I am using the latest official version of git on mac:

It's taking a very long time, looking at activity monitor git is only using one thread. However the docs say it should use 8 by default. It only uses one thread with or without the --threads <num> option. I don't have any other config set that would override this setting either:

Any ideas what I'm missing? Can anybody else use git-grep and confirm that they see multiple threads?

Thanks for any help

0 投票
1 回答
381 浏览

git - “git grep" 仅适用于 python(或任何类型的)文件?

当我试图在基于 git 的项目中查找模式时,我输入:

并且 git 在整个项目中搜索该模式。有时这会在非源文件中找到匹配项,这使得查找我正在寻找的内容变得更加困难。

我如何告诉它只搜索 Python (.py) 或其他一些源文件?

0 投票
1 回答
304 浏览

git - 有没有办法在远程存储库树上执行 git-grep 命令?

我想搜索位于远程存储库(源/主)的子树之一中的文件的内容。 git-grep文档说该命令适用于当前工作树。因此,我如何搜索构成远程回购树的文件?

0 投票
2 回答
849 浏览

git - git grepping 文件名

如何通过管道传输到git grep要搜索特定模式的文件列表?
具体来说,我这样做:

git grep我想对上一次搜索的结果文件 再做一次。

没有给出任何结果,但我知道有匹配项

正在做

给出相同的结果git grep -l 'another string'