login
Header Space

 
 

Mailing list archives

Search results

Found 107 matching messages (0.033 seconds). Page 1 of 6.

[StGit PATCH 2/2] Write to a stack log when stack is modified

... , 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

[StGIT PATCH 2/5] Compute patch appliedness from commit DAG

... 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

[StGIT PATCH 2/4] Refactor subprocess creation

... 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

[StGit PATCH 2/4] Refactor --diff-opts handling

... = [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

[StGit PATCH 2/2] Emacs mode: delete patches

... 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

[StGit PATCH 2/2] New command: stg undo

... 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

[StGIT PATCH 2/4] Implement a new patch identification scheme and id command

... 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

[StGit PATCH 2/2] Implement "stg refresh --edit" again

... --- stgit/commands/coalesce.py | 2 +- stgit/commands/edit. ... """Create a new patch.""" diff --git a/stgit/commands/refresh.py b ... trans.stack.repository.commit( - trans.patches[patch_name].data.set_tree(temp_cd.tree)) ...

git - Karl - Jul 4 2008 - 02:40

[StGit PATCH 2/2] Check for top == head at the start of every transaction

... 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

[StGIT PATCH 2/9] Revert part of the reverted commit that we want to keep.

... of _always_ separating different issues in different patches :) Signed-off-by: Yann Dirson --- stgit/commands/common ... stgit/commands/rebase.py | 2 +- stgit/git.py | 6 ++++++ 4 files changed, 9 ...

git - Yann Dirson - Jun 16 2007 - 18:00

[StGIT PATCH 2/2] Don't touch ref files manually

... 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

[StGit PATCH 2/3] Convert "stg edit" to the new infrastructure

... = [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

[StGit PATCH 2/5] Convert "stg new" to the new infrastructure

... patches. Signed-off-by: Karl Hasselström --- stgit/ ... /lib/git.py | 8 ++--- 2 files changed, 60 insertions(+), 33 deletions ... name = args[0] + if stack.patches.exists(name): + raise common.CmdException ...

git - Karl - Feb 10 2008 - 16:43

[StGit PATCH 2/2] Cleanup tree_status and use -z

... 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

Re: [StGit PATCH 2/2] Emacs mode: delete patches

... 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

[StGit PATCH 2/2] Better StGit version tracking

... +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

[StGIT PATCH 2/5] Create a git.Branch class as ancestor of stack.Stack

... /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 PATCH 2/2] Reuse the same temp index in a transaction

... 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

[StGit PATCH 2/3] asciidoc.conf: Steal updates from git

... Documentation/asciidoc.conf | 79 +++++++++++++++++++++++++++++++------------ Documentation/stg.txt | 2 + stgit/argparse.py ... manvolnum} +StGit +{stgit_version ...

git - Karl - Sep 8 2008 - 17:08

[StGIT PATCH 2/5] Have only a single command in each test_expect_failure

... 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

speck-geostationary