mozilla / positron

a experimental, Electron-compatible runtime on top of Gecko
Other
561 stars 64 forks source link

Git complains about user's identity in task run #107

Open mykmelez opened 7 years ago

mykmelez commented 7 years ago

In this task run, Git complained about the user's identity:

[taskcluster-vcs] 0 run start : (cwd: /repo) git merge origin/master

*\ Please tell me who you are.

Run

git config --global user.email "you@example.com" git config --global user.name "Your Name"

to set your account's default identity. Omit --global to set the identity only in this repository.

fatal: unable to auto-detect email address (got 'root@9defe6dad430.(none)')

We should be able to fix this with commands like this in the task configuration:

  git config --global user.email "positron@mozilla.org"
  git config --global user.name "Positron Mozilla"