Update git-branch.md
To delete a branch already pushed and merged with remote, use `git branch -d $branchname`
This commit is contained in:
parent
bc51528f1a
commit
fd9ccf25d5
|
@ -50,6 +50,12 @@ git branch -a --merged
|
||||||
|
|
||||||
List outdated branches that have been merged into the current one.
|
List outdated branches that have been merged into the current one.
|
||||||
|
|
||||||
|
### Delete a local branch
|
||||||
|
```bash
|
||||||
|
git branch -d $branchname
|
||||||
|
```
|
||||||
|
Deletes the branch only if the changes have been pushed and merged with remote
|
||||||
|
|
||||||
### Delete branch forcefully
|
### Delete branch forcefully
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
|
|
Loading…
Reference in New Issue