3

I have more than 70 local branches in GitKraken and I want to delete some of them.

Is there any way to delete multiple branches in GitKraken client?

stramin
  • 2,183
  • 3
  • 29
  • 58

3 Answers3

2

I do not think there is a way to delete multiple branches at once in GK at this time.

You might want to use a terminal like git bash for this (File -> Open Terminal in GK if a terminal was set up in Preferences). See this answer on how to delete multiple branches with one command via command line.

kowsky
  • 12,647
  • 2
  • 28
  • 41
2

You can delete multiple branches when they are inside a folder.For example feature/add-search

That way, you can right-click the feature fold and delete all branches which are inside the folder.

1
  1. Select branch
  2. Press and hold Ctrl
  3. Select another branch
  4. Right-click on the selected branch
  5. And select 'Delete n local branches'
  • That is the way, please, can you add the "shift" method? (1. Select branch, 2. Press and hold shift, 3. Select another branch, 4. Right-click on the selected branch, 5. And select 'Delete n local branches'). – stramin Jan 10 '23 at 10:45