And then personal details in src/jaguart can specify the correct name / email for personal projects.
# ~/src/jaguart/.gitconfig-include
[user]
name = Jeff Armstrong
email = jeff@jaguart.tech
signingkey = ...
mi6 v3.0.0 uses the git --global flag, which subverts the intended git behaviour.
This small change simply removes the --global flag on the calls and thereby let's git determine the correct name / email for the current working directory.
In a mixed copyright development environment,
git
can be configured to use specific email/name details for different working directories.As an example, this can be achieved with entries like:
And then personal details in
src/jaguart
can specify the correct name / email for personal projects.mi6 v3.0.0 uses the
git --global
flag, which subverts the intended git behaviour.This small change simply removes the
--global
flag on the calls and thereby let's git determine the correct name / email for the current working directory.Many thanks.