Skip to content

Commit e2817a5

Browse files
committed
Add identity configuration
1 parent 40a4fde commit e2817a5

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

material/01-installation.md

+11
Original file line numberDiff line numberDiff line change
@@ -59,3 +59,14 @@ sudo pacman -S git
5959
```bash
6060
sudo port install git
6161
```
62+
63+
# Identity configurtion
64+
65+
Configuing your identity assigns your name and email to each commit you make on your machine, we'll talk about commits and blame later on, but do the configurtion now so Git won't get confused when you make a commit, you don't wanna upset Git, do you?
66+
67+
```bash
68+
git config --global user.name "Full Name"
69+
git config --global user.email "[email protected]"
70+
```
71+
72+
The first thing you should do when you install Git is to set your user name and email address. This is important because every Git commit uses this information, and it’s immutably baked into the commits you start creating:

0 commit comments

Comments
 (0)