18 lines
355 B
Markdown
18 lines
355 B
Markdown
---
|
|
title: Edit git configuration file
|
|
tags: configuration,beginner
|
|
---
|
|
|
|
Opens the git configuration file in the git text editor.
|
|
|
|
- Use `git config --global -e` to open the git configuration file in the git text editor.
|
|
|
|
```sh
|
|
git config --global -e
|
|
```
|
|
|
|
```sh
|
|
git config --global -e
|
|
# Opens the git configuration file in the default git text editor
|
|
```
|