top of page
Search

Git: Configuration

Updated: Apr 27


git config --list --global  
git config --global user.name "Your Name"  
git config --global user.email "your_email@example.com"  

git config --list --local  
git config --local user.name "Your Name"  
git config --local user.email "your_email@example.com"  

q # to exit






Tags:

2 views
bottom of page