tangled
alpha
login
or
join now
koi.rip
/
dotfiles
0
fork
atom
my nixos dotfiles :3 (git.koi.rip mirror)
git.koi.rip/koi/dotfiles
linux
dotfiles
neovim
nixos
catppuccin
0
fork
atom
overview
issues
pulls
pipelines
git: commit message template
koi.rip
2 months ago
74e6edba
14f54cd4
+10
1 changed file
expand all
collapse all
unified
split
home
modules
programs
git.nix
+10
home/modules/programs/git.nix
···
51
51
remoteBranch = "magenta";
52
52
};
53
53
54
54
+
commit.template = "~/.gitmessage";
54
55
init.defaultBranch = "main";
55
56
};
56
57
};
···
61
62
};
62
63
};
63
64
65
65
+
home.file.".gitmessage".text = ''
66
66
+
67
67
+
68
68
+
# remember to set commit author to pr author when merging
69
69
+
# Reviewed-on:
70
70
+
# Reviewed-by: adam <me@adamperkowski.dev>
71
71
+
# Signed-off-by: adam <me@adamperkowski.dev>
72
72
+
# Co-authored-by: user <user@users.noreply.github.com>
73
73
+
'';
64
74
}