mirror of
https://github.com/git-learning-game/oh-my-git.git
synced 2024-11-03 19:04:40 +01:00
24 lines
478 B
Text
24 lines
478 B
Text
|
title = Nice to meet you!
|
||
|
cards = config-name config-email
|
||
|
|
||
|
[description]
|
||
|
|
||
|
Introduce yourself using
|
||
|
|
||
|
git config --global user.name Firstname
|
||
|
git config --global user.email "your@mail.com"
|
||
|
|
||
|
[setup]
|
||
|
|
||
|
[actions]
|
||
|
|
||
|
test "$(git config user.name)" != "You" && hint "Hey $(git config user.name), nice to meet you!"
|
||
|
|
||
|
[win]
|
||
|
|
||
|
# Have a name configured.
|
||
|
test "$(git config user.name)" != "You"
|
||
|
|
||
|
# Have an email address configured.
|
||
|
test "$(git config user.email)" != "you@time.agency"
|