Skip to content

Commit

Permalink
update username bit fixes #8
Browse files Browse the repository at this point in the history
  • Loading branch information
Jessica Lord committed Jan 21, 2014
1 parent 872150b commit de05b05
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 5 deletions.
6 changes: 5 additions & 1 deletion help.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,11 @@

{bold}Configure your username{/bold}

$ git config --global user.name "YourGitHubUserName"
$ git config --global user.name "Your Name"

{bold}Configure your username{/bold}

$ git config --global user.username githubusername

{bold}Configure your email{/bold}

Expand Down
2 changes: 1 addition & 1 deletion problems/merge_tada/problem.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

--------------------------------------------------------------------

Your pull request is waiting for review, but meanwhile, since you
Your pull request is being mereged! But meanwhile, since you
know that you definitely want those updates in your forked version,
and your branch is in good working order, merge it into the main,
branch on your forked repository, in this case, `gh-pages`.
Expand Down
2 changes: 1 addition & 1 deletion problems/merge_tada/verify.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ var spawn = require('child_process').spawn
var concat = require('concat-stream')

var ref = spawn('git', ['reflog', '-10'])
var username = spawn('git', ['config', 'user.name'])
var username = spawn('git', ['config', 'user.username'])

var user = ""

Expand Down
4 changes: 2 additions & 2 deletions problems/remote_control/problem.txt
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,11 @@

Open a new terminal {bold}(CMD + N){/bold} window and set your name:

$ git config --global user.name "My Name"
$ git config --global user.name "Your Name"

Then add your GitHub username:

$ git config --global user.username myusername
$ git config --global user.username githubusername

Now set your email:

Expand Down

0 comments on commit de05b05

Please sign in to comment.