diff --git a/module/common/bash/module/Git.nix b/module/common/bash/module/Git.nix index a6dcc3d..dfde6f6 100644 --- a/module/common/bash/module/Git.nix +++ b/module/common/bash/module/Git.nix @@ -49,6 +49,11 @@ git commit -m "''${@}" } + # Git signed commit. + function gcs() { + git commit -S -m "''${@}" + } + # Git checkout. function gch() { git checkout "''${@}"