gcc-wwwdocs branch python-formatting created. e1e17c97a8ae35cfb6b2f7428fb52b05f82450d1
Alexander Monakov
amonakov@ispras.ru
Sun Dec 1 20:08:55 GMT 2024
On Sun, 1 Dec 2024, Gerald Pfeifer wrote:
> I tried to delete it via
>
> # git push origin --delete remotes/origin/python-formatting
>
> alas just get
>
> error: unable to delete 'remotes/origin/python-formatting': remote ref does not exist
>
> Any idea how to drop that branch again from the main gcc.gnu.org repo?
You have to use the name of the branch in the remote repo, "python-formatting":
git push --delete origin python-formatting
(or using the colon syntax:)
git push origin :python-formatting
Alexander
More information about the Gcc
mailing list