Pour tout problème contactez-nous par mail : support@froggit.fr | La FAQ :grey_question: | Rejoignez-nous sur le Chat :speech_balloon:

Skip to content
Snippets Groups Projects
Commit ad6c5ae0 authored by freezed's avatar freezed :mountain:
Browse files

:wrench: Improve git task

parent 72c8b75e
No related branches found
No related tags found
No related merge requests found
......@@ -79,4 +79,6 @@ timezone="Europe/Paris"
user_shell=/bin/zsh
[workstation:vars]
git_email=<GIT_EMAIL>
git_name=<GIT_NAME>
timezone="Europe/Paris"
......@@ -20,6 +20,13 @@
loop_control:
label: "{{ item | basename }}"
- name: MY USER | git config
become: true
ansible.builtin.template:
dest: "/home/{{ my_user }}/.gitconfig"
src: templates/gitconfig.j2
mode: 0640
- name: MY USER | ssh config
become: true
ansible.builtin.template:
......
......@@ -49,5 +49,5 @@
defaultBranch = stable
[user]
name = freezed
email = git-expect-noreply@freezed.me
name = "{{ git_name }}"
email = "{{ git_email }}"
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment