删除git remote

目前项目中有两个remote

$ git remote -v
origin  https://github.com/test/test.git (fetch)
origin  https://github.com/test/test.git (push)
test    https://github.com/test/onceAgain.git (fetch)
test    https://github.com/test/onceAgain.git (push)

现在想删除其中的一个test,方法为:

git remote remove <name>
$ git remote remove test
结果为:
$ git remote -v
origin  https://github.com/test/test.git (fetch)
origin  https://github.com/test/test.git (push)
 


版权声明:本文为xiaopangcame原创文章,遵循CC 4.0 BY-SA版权协议,转载请附上原文出处链接和本声明。