markdown git-remove-remote-branch.md

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了markdown git-remove-remote-branch.md相关的知识,希望对你有一定的参考价值。

Git: Delete a branch (local or remote)
======================================

To delete a local branch

```bash
git branch -d the_local_branch
```


To remove a remote branch _(if you know what you are doing!)_

```bash
git push origin :the_remote_branch
```


or simply use the new syntax `v1.7.0`

```bash
git push origin --delete the_remote_branch
```

### Note

If you get the error error: unable to push to unqualified destination: `the_remote_branch` The destination refspec neither matches an existing ref on the remote nor begins with `refs/`, and we are unable to guess a prefix based on the source ref. error: _failed to push some refs to `git@repository_name`_


perhaps someone else has already deleted the branch. Try to synchronize your branch list with


```bash
git fetch -p
```

The git manual says `-p`, `--prune` After fetching, remove any remote-tracking branches which no longer exist on the remote.

以上是关于markdown git-remove-remote-branch.md的主要内容,如果未能解决你的问题,请参考以下文章

转换rst到markdown总结

markdown [Markdown HowTo]作为Markdown语法的秘籍

python markdown干啥用的

markdown前端渲染

如何用markdown生成目录

markdown排版示例