Hello Team, I want to install git using ansible and try to configure using below commands.
git config --global user.name "Your Name" (Choose a proper name. Eg: surabhy.mr) git config --global user.email "[email protected]" I am able to install GIT but unable to configure. --- - hosts: win gather_facts: true tasks: # Make etckeeper not complain when invoked by cron - git_config: name: user.name scope: global value: 'surabhy.mr' - git_config: name: user.email scope: global value: '[email protected] Pls help asap' -- You received this message because you are subscribed to the Google Groups "Ansible Project" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/ansible-project/c084db28-cdad-46cd-b913-a9e07c16a9dcn%40googlegroups.com.
