Error in user YAML: (<unknown>): found character that cannot start any token while scanning for the next token at line 5 column 1
---
## ⚙️ **Git Setup After Installation**
### 🧾 1️⃣ Configure your identity
```bash
git config --global user.name "Om Mapari" # Set your Git username
git config --global user.email "mapariom05@gmail.com" # Set your Git email
```
---
git config --global credential.helper manager # Use Windows Credential Managerssh-keygen -t ed25519 -C "mapariom05@gmail.com" # Create SSH key for GitHub👉 Press Enter for all prompts (default location is fine).
cat ~/.ssh/id_ed25519.pub # Show your SSH key to copy➡️ Go to GitHub → Settings → SSH and GPG Keys → New SSH Key ➡️ Paste and Save ✅
ssh -T git@github.com # Verify SSH connection with GitHubExpected output:
Hi Om-mapari! You've successfully authenticated.
git clone git@github.com:username/repo.git # Clone repo using SSHgit add . # Stage all changes
git commit -m "Initial commit" # Save changes locally
git push # Upload to GitHub