Skip to content

Instantly share code, notes, and snippets.

View FlicksonJ's full-sized avatar

Flickson J FlicksonJ

View GitHub Profile
@FlicksonJ
FlicksonJ / GitHub Accounts Management.md
Last active October 30, 2025 15:17
GitHub Accounts Management

🧭 Git User Configuration & Credential Management Notes

1. Set Global Username and Email

Used to identify you in all repositories on your system.

git config --global user.name "YourUserName"
git config --global user.email "youremail@example.com"