Welcome toVigges Developer Community-Open, Learning,Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
562 views
in Technique[技术] by (71.8m points)

git: Different configuration for different repositories

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 = [email protected]
        name = Jaroslav Bezdek

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

My ~/.gitconfig_work looks like this:

[user]
        email = [email protected]

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?


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

1 Answer

0 votes
by (71.8m points)

Add a final /:

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

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to Vigges Developer Community for programmer and developer-Open, Learning and Share
...