Files
curriculum/1.solar-system/1.welcome/11.the-identity/starter/starter.sh

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.