1

My git repositories are in ~/Projects folder. Every repository name starts with indicator, if it is personal or work repository:

~/Projects
  |-- personal-repo1
  |-- personal-repo2
  |-- work-repo1
  |-- work-repo2
  |-- work-repo3

According to this answer, I have set my ~/.gitconfig file to use different email for my personal reposiories and for my work repositories like this:

[user]
        email = my.personal@email.com
        name = Jaroslav Bezdek

[includeIf "gitdir:~/Projects/work-*"]
        path = ~/.gitconfig_work

My ~/.gitconfig_work looks like this:

[user]
        email = my.work@email.com

However, git is still using my personal email address for both personal and work repositories. Please, could you help me with that? What am I missing?

Jaroslav Bezděk
  • 6,967
  • 6
  • 29
  • 46

1 Answers1

1

Add a final /:

[includeIf "gitdir:~/Projects/work-*/"]
Arkadiusz Drabczyk
  • 11,227
  • 2
  • 25
  • 38