add git log -S (git search)

This commit is contained in:
dannydannydanny 2021-09-16 14:24:16 +02:00 committed by GitHub
parent 698c39d660
commit 33f43280ea
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -103,6 +103,9 @@ git remote prune origin
# see all commits that affected somefile
git log --follow -- filename
# search code in all history
git log -S "some_old_varname" --oneline --all
```
#### Submitting multiple PRs