Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

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?


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
642 views
Welcome To Ask or Share your Answers For Others

1 Answer

Add a final /:

[includeIf "gitdir:~/Projects/work-*/"]

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share

548k questions

547k answers

4 comments

86.3k users

...