summaryrefslogtreecommitdiff
path: root/content/cheatsheets/git.md
blob: e0d918e84192f6ee77abbf14b61a9fb8ed93e3df (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
+++
title = "git"
disable_share = true
+++

# Configuration

## Set username and email

```bash
git config --global user.name "Adam Olech"
git config --global user.email "nddr89@gmail.com"
```