diff --git a/home/program/bash/module/Git.nix b/home/program/bash/module/Git.nix index 1c6b75f..6c2c8df 100644 --- a/home/program/bash/module/Git.nix +++ b/home/program/bash/module/Git.nix @@ -225,12 +225,12 @@ } # Search for string in whole git history. - # Usage: git_search - function git_search() { + # Usage: gsearch + function gsearch() { local target="''${*}" if [[ "''${target}" = "" ]]; then - help git_search + help gsearch return 2 fi @@ -238,8 +238,8 @@ } # Sign the old commits. 0 to resign from root. - # Usage: git_sign [COMMIT_COUNT] - function git_sign() { + # Usage: gsign [COMMIT_COUNT] + function gsign() { local base="''${1}" # Resign last commit by default.