From 9ccf7dc4449b03ce465b60bf256eb92fa81e1c11 Mon Sep 17 00:00:00 2001 From: Raine Date: Sat, 14 Oct 2023 22:38:14 +0200 Subject: [PATCH] add git support --- crates/40-git/crate.sh | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 crates/40-git/crate.sh diff --git a/crates/40-git/crate.sh b/crates/40-git/crate.sh new file mode 100644 index 0000000..524f9bc --- /dev/null +++ b/crates/40-git/crate.sh @@ -0,0 +1,10 @@ +#!/bin/sh + +describe="Setup git" +scripts="@distro @self" + +apply() { + git config --global user.signingkey 01E71F18AA4398E5 + git config --global user.name Raine + git config --global user.email raine@ixvd.net +}