my nixos dotfiles :3 (git.koi.rip mirror) git.koi.rip/koi/dotfiles
linux dotfiles neovim nixos catppuccin

git: commit message template

+10
+10
home/modules/programs/git.nix
··· 51 51 remoteBranch = "magenta"; 52 52 }; 53 53 54 + commit.template = "~/.gitmessage"; 54 55 init.defaultBranch = "main"; 55 56 }; 56 57 }; ··· 61 62 }; 62 63 }; 63 64 65 + home.file.".gitmessage".text = '' 66 + 67 + 68 + # remember to set commit author to pr author when merging 69 + # Reviewed-on: 70 + # Reviewed-by: adam <me@adamperkowski.dev> 71 + # Signed-off-by: adam <me@adamperkowski.dev> 72 + # Co-authored-by: user <user@users.noreply.github.com> 73 + ''; 64 74 }