Check the core bundle and you will find this error.
How to get all remote in git
We can get all the remote names and respective url with below command.
- Below is the command to get the list of all remote added in git.
git remote -a or git remote -all - Below is the command to get the list of all remote with thier origin/remote URL.
git remote -v
How to add or remove remote from a Git repository
To add a git remote other than origin, run the following command.
git remote add origin-name gitUrl
To remove a remote from local repo
git remote remove origin-name
Note Here:
gitUrl is the url of your git repo.
origin-name default origin, but we could provide any unique name.
Subscribe to:
Posts (Atom)