From 64dfd20134ee028cc865745d8d8bfec31299ff0a Mon Sep 17 00:00:00 2001 From: admin Date: Mon, 18 Dec 2023 14:49:09 +0100 Subject: initial commit --- roles/common-linux/tasks/git.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 roles/common-linux/tasks/git.yml (limited to 'roles/common-linux/tasks/git.yml') diff --git a/roles/common-linux/tasks/git.yml b/roles/common-linux/tasks/git.yml new file mode 100644 index 0000000..4ed5012 --- /dev/null +++ b/roles/common-linux/tasks/git.yml @@ -0,0 +1,12 @@ +- name: git config user.email + git_config: + name: user.email + scope: global + value: "admin" + +- name: git config user.name + git_config: + name: user.name + scope: global + value: "admin" + -- cgit v1.2.3