File tree Expand file tree Collapse file tree 3 files changed +15
-0
lines changed Expand file tree Collapse file tree 3 files changed +15
-0
lines changed Original file line number Diff line number Diff line change @@ -61,3 +61,7 @@ git_settings: []
61
61
# value: true
62
62
# - name: rerere.autoUpdate
63
63
# value: true
64
+
65
+ git_paths : []
66
+ # git_paths:
67
+ # - ~/.config/delta/themes/themes.gitconfig
Original file line number Diff line number Diff line change 24
24
with_items : " {{ git_settings }}"
25
25
when : git_settings | length > 0
26
26
27
+ - name : Include specific paths to .gitconfig
28
+ community.general.git_config :
29
+ name : include.path
30
+ value : " {{ item }}"
31
+ add_mode : add
32
+ scope : global
33
+ loop : " {{ git_include_paths }}"
34
+ when : git_include_paths | length > 0
35
+
27
36
- name : Setup git credential helper fact
28
37
ansible.builtin.set_fact :
29
38
git_credential_helper : " {{ __git_credential_helper }}"
Original file line number Diff line number Diff line change @@ -95,6 +95,8 @@ git_settings:
95
95
- name : user.signingkey
96
96
value : ~/.ssh/id_ed25519.pub
97
97
98
+ git_include_paths : []
99
+
98
100
dotfiles_repo : https://github.com/jacquindev/dotfiles.git
99
101
dotfiles_repo_version : master
100
102
dotfiles_repo_accept_hostkey : true
You can’t perform that action at this time.
0 commit comments