Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
390 views
in Technique[技术] by (71.8m points)

bash - How can you disable line numbers in git grep when you have grep.lineNumber=true?

I have grep.lineNumber=true in my ~/.gitconfig because I almost always want to show them. Sometimes though, I want to disable them for a single command without editing the config file. Is there an option I can pass to git grep that disables line numbers? There are of course a few ways around it (see below), but I'm curious to know if there is a built-in solution.

Some ways I've found to work around it:

  1. Pipe through another tool that removes the line numbers (depending on the situation e.g. cut, awk, sed, grep, etc)
  2. Use normal grep (or any of its variants like egrep), where I happen to not have this turned on by default
question from:https://stackoverflow.com/questions/65900984/how-can-you-disable-line-numbers-in-git-grep-when-you-have-grep-linenumber-true

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)
git -c grep.lineNumber=false grep…

See the docs for git -c.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...