Found 107 matching messages (0.033 seconds). Page 1 of 6.
... , basedir - +from stgit.lib import log help = 'manage patch stacks' usage = ... out.done() else: out.done('patch unchanged') print_crt_patch(crt_series) - return check_local_changes() ...
git - Karl - Feb 13 2008 - 21:32
... The order of the applied patches is also taken from the ... crt_series.delete_patch_data(patch) out.done() diff --git a/stgit/commands/float ... metadata format version. -FORMAT_VERSION = 2 +FORMAT_VERSION = 3 class PatchSet(StgitObject): def ...
git - Karl - Aug 6 2007 - 22:47
... if f.close(): - return '' - return string +from stgit.run import * # GIT_DIR value cached ... @@ def func(parser, options, args): print patch.get_name() print '-'*79 - # write description f. ...
git - Karl - Aug 26 2007 - 16:33
... = [make_option('-d', '--diff', help = 'edit the patch diff', action = 'store_true'), - make_option('-O', '--diff ... = git_id(crt_series, '%s//top' % patch)), diff --git a/stgit/commands/status.py b/ ...
git - Karl - Jan 24 2008 - 04:07
... ask for confirmation before deleting. contrib/stgit.el | 10 +++++++++- 1 files changed, ... "Major mode for interacting with StGit. @@ -341,6 +342,13 @@ Commands: ... 0 20)) (t patch)))) +(defun stgit-delete (patch-names) + "Delete the ...
git - Karl - Feb 10 2008 - 16:54
... import out -help = 'reset the patch stack to an earlier state' ... return self.commit.data.parents[2:] class FullLog(Log): full_log = property ... EOF + +test_expect_success 'Initialize StGit stack with three patches' ' + stg init && + echo ...
git - Karl - May 8 2008 - 20:44
... import stack, git, basedir from stgit.config import config, file_extensions from ... current_branch_name + + # The stack base + if patch == '{base}': + return repository.get_stack(branch ... Use "refresh" or' diff --git a/stgit/commands/id.py b ...
git - Catalin Marinas - Jun 19 2008 - 17:42
...
git - Karl - Jul 4 2008 - 02:40
... 11 ++++++++--- t/t2600-coalesce.sh | 2 +- 6 files changed, 17 insertions ... patches: log.reset_stack_partially(trans, stack.repository.default_iw, diff --git a/stgit ... stgit/commands/uncommit.py @@ -132,7 +132,8 @@ def func(parser ...
git - Karl - Aug 27 2008 - 18:06
... of
_always_ separating different issues in different patches :)
Signed-off-by: Yann Dirson
git - Yann Dirson - Jun 16 2007 - 18:00
... update_top_ref() set_format_version(1) # Update 1 -> 2. @@ -441,7 +442,7 @@ class ... get_patch(self, name): """Return a Patch object for the given name ... create an stgit branch with a spurious refs/patches/ entry' ' - stg ...
git - Karl - Aug 9 2007 - 23:23
... = [make_option('-d', '--diff', help = 'edit the patch diff', action = 'store_true'), - make_option('--undo', - ... now we have to rewrite the StGit patch + # (and any patches on top of it). + ...
git - Karl - Feb 1 2008 - 03:50
... patches.
Signed-off-by: Karl Hasselström
git - Karl - Feb 10 2008 - 16:43
... for this code, though. stgit/commands/patches.py | 2 +- stgit/commands/refresh.py ... (parser, options, args): """Show the patches modifying a file """ if not ... .py index 218075b..f44c58c 100644 --- a/stgit/commands/refresh.py +++ b/ ...
git - davidk - Aug 30 2007 - 07:11
... you to mark one or more patches > before deleting. This is convenient when ... stgit-marked-patches + (stgit-marked-patches) + (let ((patch (stgit-patch-at-point))) ... point to the line containing PATCH" (let ((p (point))) > * We should ...
git - David Kågedal - Feb 11 2008 - 05:42
... +1,54 @@ -version = '0.14.2' +from stgit.exception import StgException +from stgit ... os.path.join(sys.path[0], 'stgit', 'builtin_version.py'), 'w') + f.write('# ... minimum version requirements git_min_ver = '1.5.2' -- To unsubscribe from this list: ...
git - Karl - May 13 2008 - 21:47
... /lib/stack.py | 27 ++++++-------------------- 2 files changed, 60 insertions(+), 21 deletions(-) ... b/stgit/lib/stack.py @@ -130,34 +130,22 @@ class Patches( ... = property(lambda self: self.__patchorder) patches = property(lambda self: self.__patches) ...
git - Catalin Marinas - Jun 6 2008 - 16:45
... stgit/lib/transaction.py | 12 +++++++++++- 2 files changed, 40 insertions(+), 15 deletions(-) ... or None if the patch diff --git a/stgit/lib/transaction.py b ... @@ class StackTransaction(object): or self.patches[self.applied[0]].data.parent ...
git - Karl - Jul 2 2008 - 02:13
... Documentation/asciidoc.conf | 79 +++++++++++++++++++++++++++++++------------
Documentation/stg.txt | 2 +
stgit/argparse.py ... manvolnum}
+
git - Karl - Sep 8 2008 - 17:08
... create an stgit branch with a spurious refs/patches/ entry' \ - 'find ... test $? = 1 ) + 'Create a spurious patches/ entry' ' + find .git -name foo ... xargs rm -rf && + touch .git/patches/foo ' test_expect_failure \ - 'Try to create ...
git - Karl - May 18 2007 - 20:09