Re: [PATCH v19 5/7] branch: add --delete-merged <branch>
Harald Nordgren <[email protected]>
| Newsgroups | org.kernel.vger.git |
|---|---|
| Message-ID | <CAHwyqnXdaPeO12+p=_+_ttrknV0-VqTMnH-suS66yZ4stsBKnQ@mail.gmail.com> |
I think I can fix this with
```
-+ if (strset_contains(data->deletable, ref->name))
++ if (strset_contains(data->deletable, ref->name) ||
++ strset_contains(data->spared, ref->name))
```
I used your example to write a test about it as well.
Harald