Change git config
**Check by executing this** git config --list **Change user email** git config --global user.email "email@example.com" **Change user name** git config --global user.name "user" **Change user credential name** git config --global…
**Check by executing this** git config --list **Change user email** git config --global user.email "email@example.com" **Change user name** git config --global user.name "user" **Change user credential name** git config --global…
From August 13, 2021, Github is no longer accepting account passwords when authenticating Git operations. You need to add PAT (Personal Access Token) instead, you can follow the below method to add…
git rm -r --cached . git add . git commit -m "fixed untracked files"
git init git remote add origin git@github.com:user/repo.git git pull origin master