From d96796efbad18a2b877002a9bd4fc667d856259f Mon Sep 17 00:00:00 2001 Message-Id: From: Mark Wooding Date: Mon, 8 Oct 2007 05:52:06 +0200 Subject: [PATCH] Let some commands work with detached HEAD MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Organization: Straylight/Edgeware From: Karl Hasselström add, resolved, and status didn't use the crt_series that was initialized for them. So don't initialize it, since that means (1) less work and (2) they won't fail when HEAD is detached. Note that this doesn't completely fix the problem with detached HEAD: a number of other commands (e.g. branch) don't always need to refer to a current series, but currently fails on a detached HEAD even in those situations. Signed-off-by: Karl Hasselström --- stgit/commands/add.py | 2 +- stgit/commands/resolved.py | 2 +- stgit/commands/status.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/stgit/commands/add.py b/stgit/commands/add.py index 264ab9f..ceea188 100644 --- a/stgit/commands/add.py +++ b/stgit/commands/add.py @@ -31,7 +31,7 @@ Add the files or directories passed as arguments to the repository. When a directory name is given, all the files and subdirectories are recursively added.""" -directory = DirectoryHasRepository() +directory = DirectoryHasRepository(needs_current_series = False) options = [] diff --git a/stgit/commands/resolved.py b/stgit/commands/resolved.py index 236ffd7..011db91 100644 --- a/stgit/commands/resolved.py +++ b/stgit/commands/resolved.py @@ -34,7 +34,7 @@ Mark a merge conflict as resolved. The conflicts can be seen with the 'C'. This command also removes any .{ancestor,current,patched} files.""" -directory = DirectoryHasRepository() +directory = DirectoryHasRepository(needs_current_series = False) options = [make_option('-a', '--all', help = 'mark all conflicts as solved', action = 'store_true'), diff --git a/stgit/commands/status.py b/stgit/commands/status.py index 5763d09..20614b0 100644 --- a/stgit/commands/status.py +++ b/stgit/commands/status.py @@ -40,7 +40,7 @@ under revision control. The files are prefixed as follows: A 'refresh' command clears the status of the modified, new and deleted files.""" -directory = DirectoryHasRepository() +directory = DirectoryHasRepository(needs_current_series = False) options = [make_option('-m', '--modified', help = 'show modified files only', action = 'store_true'), -- [mdw]