Tested solution. If you specify user.name and user.email in the global git configuration, the repo will not ask for your name / email address. You can install them by running the following git commands:
$ git config --global user.name 'Warren Turkal' $ git config --global user.email ' wt@example.com '
Unrepresented Possible Solution. I think you can also set these attributes in the repo repository instead of changing the global configuration if you want the name and email address to be set for the same repo repository. For this you can do something like this from the root of the repo:
$ cd .repo/manifests $ git config user.name 'Warren Turkal' $ git config user.email ' wt@example.com '
source share