Add git grep

This commit is contained in:
scriptype 2016-06-17 02:58:38 +03:00
parent d5ca8fabcc
commit 221aa76eec
2 changed files with 10 additions and 1 deletions

View File

@ -115,6 +115,7 @@ P.S: All these commands are tested on `git version 2.7.4 (Apple Git-66)`.
* [Turn off git colored terminal output](#turn-off-git-colored-terminal-output)
* [specific color settings](#specific-color-settings)
* [Show all local branches ordered by recent commits](#show-all-local-branches-ordered-by-recent-commits)
* [Find lines matching the pattern (regex or string) in tracked files](#find-lines-matching-the-pattern-regex-or-string-in-tracked-files)
<!-- Dont remove or change the comment below that can break automatic updates. More info at <http://npm.im/doxie.inject>. -->
<!-- @doxie.inject end toc -->
@ -628,7 +629,7 @@ git config --global core.ignorecase false
## Add custom editors.
```sh
git config --global core.editor '$EDITOR'
git config --global core.editor '$EDITOR'
```
## Auto correct typos.
@ -793,5 +794,10 @@ git config --global <specific command e.g branch, diff> <true, false or always>
git for-each-ref --sort=-committerdate --format='%(refname:short)' refs/heads/
```
## Find lines matching the pattern (regex or string) in tracked files
```sh
git grep --heading --line-number 'foo bar'
```
<!-- Dont remove or change the comment below that can break automatic updates. More info at <http://npm.im/doxie.inject>. -->
<!-- @doxie.inject end -->

View File

@ -348,4 +348,7 @@
},{
"title": "Show all local branches ordered by recent commits",
"tip": "git for-each-ref --sort=-committerdate --format='%(refname:short)' refs/heads/"
},{
"title": "Find lines matching the pattern (regex or string) in tracked files",
"tip": "git grep --heading --line-number 'foo bar'"
}]