#!/bin/bash # The Identity — tell Git who you are. # # When this script runs, a fresh Git repo is already initialized in # the current directory. Your script must set both: # # - user.name (any non-empty string) # - user.email (must contain @ and a dot) # # Tools: git config "" # Your code here.