Git: Add search.
This commit is contained in:
parent
ac10c3b9e6
commit
acc699a567
|
@ -224,6 +224,19 @@
|
||||||
open "''${url}"
|
open "''${url}"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
# Search for string in whole git history.
|
||||||
|
# Usage: git_search <STRING>
|
||||||
|
function git_search() {
|
||||||
|
local target="''${*}"
|
||||||
|
|
||||||
|
if [[ "''${target}" = "" ]]; then
|
||||||
|
help git_search
|
||||||
|
return 2
|
||||||
|
fi
|
||||||
|
|
||||||
|
git log -p -S "''${target}"
|
||||||
|
}
|
||||||
|
|
||||||
# Sign the old commits. 0 to resign from root.
|
# Sign the old commits. 0 to resign from root.
|
||||||
# Usage: git_sign [COMMIT_COUNT]
|
# Usage: git_sign [COMMIT_COUNT]
|
||||||
function git_sign() {
|
function git_sign() {
|
||||||
|
|
Loading…
Reference in a new issue