Coder.comC
Coder.com15mo ago
8 replies
Katorly

Git commit still uses the email from my Coder account

Previous context: https://discord.com/channels/747933592273027093/971231372373033030/1302557051834339368

Hello! I have removed the env values concerning Git in my template:
# These environment variables allow you to make Git commits right away after creating a
  # workspace. Note that they take precedence over configuration defined in ~/.gitconfig!
  # You can remove this block if you'd prefer to configure Git manually or using
  # dotfiles. (see docs/dotfiles.md)
  env = {
    GIT_AUTHOR_NAME     = coalesce(data.coder_workspace_owner.me.full_name, data.coder_workspace_owner.me.name)
    GIT_AUTHOR_EMAIL    = "${data.coder_workspace_owner.me.email}"
    GIT_COMMITTER_NAME  = coalesce(data.coder_workspace_owner.me.full_name, data.coder_workspace_owner.me.name)
    GIT_COMMITTER_EMAIL = "${data.coder_workspace_owner.me.email}"
  }

but Git still uses the email from my Coder account. Are there anything else I need to remove? Thanks

This is my template: https://github.com/katorlys-samples/coderv2-templates/blob/main/default/main.tf#L58
Was this page helpful?