From: Yann Dirson Date: Tue, 10 Apr 2007 21:47:10 +0000 (+0100) Subject: Stop advertising 'pull' as the only operation blocked on protected stacks. X-Git-Tag: v0.13~105 X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~mdw/git/stgit/commitdiff_plain/f644f510bf66b9c6eb1b44668663350bb5083599?ds=sidebyside Stop advertising 'pull' as the only operation blocked on protected stacks. Signed-off-by: Yann Dirson --- diff --git a/stgit/commands/branch.py b/stgit/commands/branch.py index eff0121..5f79f7e 100644 --- a/stgit/commands/branch.py +++ b/stgit/commands/branch.py @@ -58,13 +58,13 @@ options = [make_option('-c', '--create', help = 'list branches contained in this repository', action = 'store_true'), make_option('-p', '--protect', - help = 'prevent "stg pull" from modifying this branch', + help = 'prevent StGIT from modifying this branch', action = 'store_true'), make_option('-r', '--rename', help = 'rename an existing development branch', action = 'store_true'), make_option('-u', '--unprotect', - help = 'allow "stg pull" to modify this branch', + help = 'allow StGIT to modify this branch', action = 'store_true')]