Skip to content

Commit

Permalink
Use more realistic example email address in setup
Browse files Browse the repository at this point in the history
Per RFC 2606 the @whatever.example is a valid version of the
standard @example.com domain used for emails, and allows for
another domain in the use for the per-repo config setting.
  • Loading branch information
randomecho committed Jun 19, 2018
1 parent ac4ad34 commit 0defb26
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions intermediate/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -97,14 +97,14 @@ To set the same values to apply to *any* of your repositories:

```shell
$ git config --global user.name "your name"
$ git config --global user.email "your@email"
$ git config --global user.email "[email protected]"
```

For a configuration specific to just the repository folder you're currently working in:

```shell
$ git config user.name "[your full name]"
$ git config user.email "[[email protected]]"
$ git config user.email "[[email protected]]"
```

#### Scopes
Expand Down

0 comments on commit 0defb26

Please sign in to comment.