13 lines
317 B
Bash
13 lines
317 B
Bash
#!/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 <key> "<value>"
|
|
|
|
# Your code here.
|