Problem
The arthel repository on hunter has git config set to Justin's identity instead of magent's:
$ git config user.name
Justin Holmes
$ git config user.email
justin@justinholmes.com
Meanwhile, maybelle-config is correctly configured as magent-cryptograss. This causes commits made by magent in arthel to appear under Justin's authorship.
Expected Behavior
arthel should have the same git config as maybelle-config:
Likely Cause
Probably something in the hunter container build logic or initialization scripts is setting this incorrectly for arthel.
Fix
Need to either:
- Fix the hunter build logic to set correct git config for all repos
- Run
git config user.name 'magent-cryptograss' && git config user.email 'magent@cryptograss.live' in arthel repo on hunter
Problem
The arthel repository on hunter has git config set to Justin's identity instead of magent's:
Meanwhile, maybelle-config is correctly configured as magent-cryptograss. This causes commits made by magent in arthel to appear under Justin's authorship.
Expected Behavior
arthel should have the same git config as maybelle-config:
Likely Cause
Probably something in the hunter container build logic or initialization scripts is setting this incorrectly for arthel.
Fix
Need to either:
git config user.name 'magent-cryptograss' && git config user.email 'magent@cryptograss.live'in arthel repo on hunter