Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions intermediate/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,25 +40,25 @@ Establish important and useful settings for efficient command line use.
---

```
git config user.name "Your Name"
git config user.email "Email Address"
git config --global user.name "Your Name"
git config --global user.email "Email Address"
```

---

---

```bash
git config color.ui auto
git config core.autocrlf [input|true]
git config --global color.ui auto
git config --global core.autocrlf [input|true]
```

---

---

```bash
git config core.editor
git config --global core.editor
```

---
Expand All @@ -84,10 +84,10 @@ These are the very first Git elements often suggested to set. If not set, Git wi
To see the current settings, individually query two configuration values:

```shell
$ git config user.name
$ git config --global user.name
Firstname Lastname

$ git config user.email
$ git config --global user.email
[email protected]
```

Expand Down