From f1a8593c6252a98ffcc964d2245bbf02a2aed0b6 Mon Sep 17 00:00:00 2001 From: Marek Paśnikowski Date: Tue, 16 Jan 2024 15:44:55 +0100 Subject: Enable cryptography for git Configure the GPG key for git to use. --- home-files/gitconfig | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 home-files/gitconfig (limited to 'home-files/gitconfig') diff --git a/home-files/gitconfig b/home-files/gitconfig new file mode 100644 index 0000000..4e9c1ca --- /dev/null +++ b/home-files/gitconfig @@ -0,0 +1,4 @@ +[user] + email = marek@marekpasnikowski.pl + name = Marek Paśnikowski + signingkey = 6D81B1207711899F -- cgit v1.2.3 From de2092343301239ff4f5c0aa3f80688346c4b777 Mon Sep 17 00:00:00 2001 From: Marek Paśnikowski Date: Thu, 18 Jan 2024 12:56:21 +0100 Subject: Enable autoSetupRemote for git I always use branches to test changes before commiting them to master. The default behavior of git with regards to pushing new branches was getting tiring, so I decided switch the suggested option. --- home-files/gitconfig | 3 +++ 1 file changed, 3 insertions(+) (limited to 'home-files/gitconfig') diff --git a/home-files/gitconfig b/home-files/gitconfig index 4e9c1ca..5195158 100644 --- a/home-files/gitconfig +++ b/home-files/gitconfig @@ -2,3 +2,6 @@ email = marek@marekpasnikowski.pl name = Marek Paśnikowski signingkey = 6D81B1207711899F + +[push] + autoSetupRemote = true -- cgit v1.2.3