Skip to content

Instantly share code, notes, and snippets.

View aasadi1978's full-sized avatar

Alireza Asadi aasadi1978

View GitHub Profile
https://chatgpt.com/share/677545c9-65c8-8003-a0b6-06c432728abc
To set up the global parameters for your local Git repository, follow these steps:
### 1. **Set Global Username and Email**
These are used to identify the author of commits.
```bash
git config --global user.name "Your Name"
git config --global user.email "[email protected]"