Git Configuration (Starter)
git config --global user.name "your_username" (you can put --global or --local local means one time used of that specific account and global means the whole system will used that account) git config --global user.email "your_email" git config --list (to list all the config done) git remote set-url origin <new-url> (To add new url in git ) git status (to check the status of the following repo)