- Git Best Practices Guide
- Eric Pidoux
- 31字
- 2021-08-05 17:19:46
Configuring Git
Before you start working on Git, you have to configure your name and e-mail by using the following commands:
Erik@local:~$git config --global user.name "Erik" Erik@local:~$git config --global user.email erik@domain.com