Comments
Patch
@@ -288,14 +288,11 @@
raise error.Abort("can't change topic of a public change")
_changetopics(ui, repo, rev, topic)
if clear:
- if repo.vfs.exists('topic'):
- repo.vfs.unlink('topic')
- return
+ return _changecurrenttopic(repo, None)
+
if topic:
- with repo.wlock():
- with repo.vfs.open('topic', 'w') as f:
- f.write(topic)
- return
+ return _changecurrenttopic(repo, topic)
+
_listtopics(ui, repo, opts)
@command('stack [TOPIC]', [] + commands.formatteropts)
@@ -309,6 +306,17 @@
raise error.Abort(_('no active topic to list'))
return stack.showstack(ui, repo, topic, opts)
+def _changecurrenttopic(repo, newtopic):
+ """changes the current topic."""
+
+ if newtopic:
+ with repo.wlock():
+ with repo.vfs.open('topic', 'w') as f:
+ f.write(newtopic)
+ else:
+ if repo.vfs.exists('topic'):
+ repo.vfs.unlink('topic')
+
def _changetopics(ui, repo, revset, newtopic):
rewrote = 0
needevolve = False