Git name and global Git hub name match but "Githubbin" still fails verification

What am I missing? Why is this failing verification?

olddognewtrix123:~/workspace/hello-world (master) $ git config --global user.username
Olddognewtrix123
olddognewtrix123:~/workspace/hello-world (master) $ git config user.name
Olddognewtrix123
olddognewtrix123:~/workspace/hello-world (master) $ git-it verify
Verifying "GITHUBBIN"...

ACTUAL                             EXPECTED
------                             --------
"Username added to Git config!"    "Username added to Git config!"
"You're on GitHub!"                "You're on GitHub!"            
"GitHub & Git config usernames" != "Username same on GitHub and"  
"do not match"                  != "Git config!"                  
""                                 ""                             
# FAIL

Your solution to GITHUBBIN didn't match the expected output.
Try again!
--------------------------

Still running into the same error.

olddognewtrix123:~/workspace $ git config --global user.name "Olddognewtrix123"
olddognewtrix123:~/workspace $ git config --global user.email jesgillespie@gmail.com
olddognewtrix123:~/workspace $ git-it verify
Verifying "GITHUBBIN"...

ACTUAL                             EXPECTED
------                             --------
"Username added to Git config!"    "Username added to Git config!"
"You're on GitHub!"                "You're on GitHub!"            
"GitHub & Git config usernames" != "Username same on GitHub and"  
"do not match"                  != "Git config!"                  
""                                 ""                             
# FAIL

Your solution to GITHUBBIN didn't match the expected output.
Try again!

FYI:

olddognewtrix123:~/workspace/hello-world (master) $ git config -l
user.name=Olddognewtrix123
user.email=jesgillespie@gmail.com
user.username=Olddognewtrix123
core.editor=nano
core.whitespace=off
core.excludesfile=~/.gitignore
advice.statusuoption=false
color.ui=true
push.default=current
core.repositoryformatversion=0
core.filemode=true
core.bare=false
core.logallrefupdates=true
user.name=Olddognewtrix123

My username is Olddognewtrix123

In my old Git account, my username is Olddognewtrix123

I went back and checked out what my username is in the C9 workspace… it’s olddognewtrix123

—Groan—

Changed user.name and user.username to oldddognewtrix just in C9 and got it working now.

On to the next exercise!

1 Like