Since this parameter is now used to decide if the branch has already been initialised, not removing it forbids to create a stack with the same name as one that was deleted. Signed-off-by: Yann Dirson <ydirson@xxxxxxxxxx> --- stgit/stack.py | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/stgit/stack.py b/stgit/stack.py index 30fcca7..e2bf6ac 100644 --- a/stgit/stack.py +++ b/stgit/stack.py @@ -718,6 +718,7 @@ class Series(StgitObject): config.unset('branch.%s.remote' % self.__name) config.unset('branch.%s.merge' % self.__name) config.unset('branch.%s.stgit.parentbranch' % self.__name) + config.unset('branch.%s.stgitformatversion' % self.__name) def refresh_patch(self, files = None, message = None, edit = False, show_patch = False, - To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html