> git remote -v origin git@bitbucket.org:inyw/inyw_web.git (fetch) origin git@bitbucket.org:inyw/inyw_web.git (push) > git remote set-url --add origin https://github.z-web.eu/git/NEYOWO/inyw_web.git > git remote -v
# delete local tag '12345' git tag -d 12345 # delete remote tag '12345' (eg, GitHub version too) git push origin :refs/tags/12345 # alternative approach git push --delete origin tagName git tag -d tagName
git config credential.helper store then git pull provide user-name and password and those details will be remembered later. The credentials are stored in the disk, with the disk permissions.