Get git repository remote origin:
git config --get remote.origin.url
Move a git repository another remote origin:
git remote set-url origin https://GITLAB_URL/PROJECT/REPOSITORY.git
Delete a local branch:
git branch -d LOCAL_BRANCH_NAME
Delete a remote branch:
git push origin --delete REMOTE_BRANCH_NAME