mirror of
https://github.com/namibia/tips.git
synced 2025-02-02 19:48:24 +00:00
Add git grep
This commit is contained in:
parent
d5ca8fabcc
commit
221aa76eec
@ -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)
|
||||
|
||||
<!-- Don’t 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'
|
||||
```
|
||||
|
||||
<!-- Don’t remove or change the comment below – that can break automatic updates. More info at <http://npm.im/doxie.inject>. -->
|
||||
<!-- @doxie.inject end -->
|
||||
|
@ -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'"
|
||||
}]
|
||||
|
Loading…
x
Reference in New Issue
Block a user