Вопрос

I am new to Git and stackoverflow. I just want to ask how to delete a remote repository from git shell as deleting from the web page is a long task.

Это было полезно?

Решение

I don’t think this is really what you want to do, but to remove a remote repository from your local repository you can do this:

git remote remove <remote-name>

Note that this will only remove the link you have in your local repository, it will not touch anything wherever your remote repository actually is.

If you want to physically delete it there, you have to do it there. This is not something that can—or should—be done from a local repository.

Другие советы

Short answer: No

There is no way to actually delete a repository hosted on github from the git shell without quite complex scripting and actually sending data over HTTP. On a side note the questions you post on SO should show the efforts you have given. Welcome to SO :)

Лицензировано под: CC-BY-SA с атрибуция
Не связан с StackOverflow
scroll top