219k views
0 votes
How to delete all local branches in git

User ISenne
by
7.7k points

1 Answer

6 votes

Final answer:

To delete all local branches in Git, you can use the command 'git branch --merged | grep -v "\*" | xargs -n 1 git branch -d'.

Step-by-step explanation:

To delete all local branches in Git, you can use the command 'git branch --merged | grep -v "\*" | xargs -n 1 git branch -d'. This command will find all the branches that have been merged into the current branch, filter out the current branch itself, and then delete the remaining branches one by one.

Here is a breakdown of the command:

'git branch --merged' lists all the branches that have been merged into the current branch

'grep -v "\*"' removes the current branch from the list

'xargs -n 1 git branch -d' deletes each branch one by one

Make sure to run this command with caution, as it will permanently delete all the local branches that have been merged.

This command will find all the branches that have been merged into the current branch, filter out the current branch itself, and then delete the remaining branches one by one.

User Cbeer
by
7.6k points