mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-06-19 21:31:37 +00:00
14 lines
194 B
Markdown
14 lines
194 B
Markdown
# How to setup development environment
|
|
|
|
## pre-commit
|
|
|
|
```bash
|
|
# Install pre-commit
|
|
pipx install pre-commit
|
|
|
|
# Install git hook
|
|
pre-commit install
|
|
|
|
# Uninstall git hook
|
|
pre-commit uninstall
|
|
```
|