On 2007-12-19 23:24:49 +0100, Karl Hasselström wrote: > And here it is! And with that, I don't see any reason to not recommend that you pull every patch I have. Which is: The following changes since commit 5be69cd8d89bd89be31364e9c0fd9e947b6ef644: Karl Hasselström (1): Name the exit codes to improve legibility are available in the git repository at: git://repo.or.cz/stgit/kha.git safe David Kågedal (19): Add an StGit mode for emacs Emacs mode: Improve the output buffer state Emacs mode: Bind n and p Emacs mode: add stgit-repair Emacs mode: added stgit-commit and stgit-uncommit Emacs mode: Add stgit-edit command Emacs mode: added fontification Emacs mode: Added stgit-new Check bottom and invariants Remove the 'bottom' field Remove the 'top' field Split git.merge into two functions Leave working dir and index alone after failed (conflicting) push Added a test case to check what happens when push finds a conflict Simplify merge_recursive Use the output from merge-recursive to list conflicts Ask git about unmerged files Emacs mode: Add mark command Emacs mode: coalesce command Karl Hasselström (36): Emacs mode: Show keybindings when user presses "h" or "?" Emacs mode: Add an explanatory header Emacs mode: Makefile for building stgit.el Emacs mode: push/pop next patch, not patch at point Emacs mode: Let "P" push or pop patch at point Emacs mode: Bind "G" to "stg goto" Emacs mode: show patches' short description Write removed fields for backwards compatibility Nicer conflict markers Better error message if merge fails Fix "stg resolved" to work with new conflict representation Refactoring: pass more than one file to resolved() We keep the different stages of a conflict in the index now "stg status --reset" is not needed anymore Remove "stg add" Remove "stg rm" Remove "stg cp" Remove "stg resolved" New StGit core infrastructure: repository operations Write metadata files used by the old infrastructure Upgrade older stacks to newest version Let "stg clean" use the new infrastructure Add "stg coalesce" Let "stg applied" and "stg unapplied" use the new infrastructure Teach the new infrastructure about the index and worktree Let "stg clean" use the new transaction primitives Let "stg goto" use the new infrastructure Convert "stg uncommit" to the new infrastructure New infrastructure: Make sure that the branch is initialized Expose transaction abort function stg coalesce: Support --file and --save-template Set exit code to 3 on merge conflict Convert "stg commit" to new infrastructure Make "stg commit" fancier Test that "stg goto" can be called from a subdirectory Make "stg goto" subdirectory safe Documentation/stg-cp.txt | 63 ------- Documentation/stg.txt | 2 - Documentation/tutorial.txt | 31 ++-- contrib/Makefile | 19 ++ contrib/stgit-completion.bash | 4 +- contrib/stgit.el | 377 +++++++++++++++++++++++++++++++++++++++ examples/gitconfig | 19 +-- setup.py | 2 +- stgit/commands/add.py | 44 ----- stgit/commands/applied.py | 27 ++-- stgit/commands/clean.py | 49 ++---- stgit/commands/coalesce.py | 122 +++++++++++++ stgit/commands/commit.py | 111 ++++++++----- stgit/commands/common.py | 39 ++--- stgit/commands/copy.py | 45 ----- stgit/commands/goto.py | 52 ++---- stgit/commands/pick.py | 2 +- stgit/commands/resolved.py | 94 ---------- stgit/commands/rm.py | 48 ----- stgit/commands/status.py | 31 ++-- stgit/commands/sync.py | 1 - stgit/commands/unapplied.py | 23 ++-- stgit/commands/uncommit.py | 81 ++++----- stgit/config.py | 1 - stgit/git.py | 75 +++++--- stgit/gitmergeonefile.py | 97 +---------- stgit/lib/__init__.py | 18 ++ stgit/lib/git.py | 388 +++++++++++++++++++++++++++++++++++++++++ stgit/lib/stack.py | 176 +++++++++++++++++++ stgit/lib/stackupgrade.py | 98 +++++++++++ stgit/lib/transaction.py | 209 ++++++++++++++++++++++ stgit/main.py | 14 +- stgit/run.py | 12 +- stgit/stack.py | 156 ++++------------- stgit/utils.py | 25 +++ t/t0002-status.sh | 15 +- t/t1200-push-modified.sh | 2 +- t/t1202-push-undo.sh | 6 +- t/t1203-push-conflict.sh | 70 ++++++++ t/t1204-pop-keep.sh | 2 +- t/t1205-push-subdir.sh | 8 +- t/t1300-uncommit.sh | 16 +- t/t1301-repair.sh | 2 +- t/t1400-patch-history.sh | 4 +- t/t1500-float.sh | 14 +- t/t1600-delete-one.sh | 12 +- t/t1601-delete-many.sh | 2 +- t/t1700-goto-top.sh | 2 +- t/t2000-sync.sh | 12 +- t/t2100-pull-policy-fetch.sh | 4 +- t/t2101-pull-policy-pull.sh | 4 +- t/t2102-pull-policy-rebase.sh | 4 +- t/t2300-refresh-subdir.sh | 2 +- t/t2600-coalesce.sh | 31 ++++ t/t2800-goto-subdir.sh | 59 ++++++ 55 files changed, 1959 insertions(+), 867 deletions(-) delete mode 100644 Documentation/stg-cp.txt create mode 100644 contrib/Makefile create mode 100644 contrib/stgit.el delete mode 100644 stgit/commands/add.py create mode 100644 stgit/commands/coalesce.py delete mode 100644 stgit/commands/copy.py delete mode 100644 stgit/commands/resolved.py delete mode 100644 stgit/commands/rm.py create mode 100644 stgit/lib/__init__.py create mode 100644 stgit/lib/git.py create mode 100644 stgit/lib/stack.py create mode 100644 stgit/lib/stackupgrade.py create mode 100644 stgit/lib/transaction.py create mode 100755 t/t1203-push-conflict.sh create mode 100755 t/t2600-coalesce.sh create mode 100755 t/t2800-goto-subdir.sh kha/experimental points to the same commit as kha/safe, for now. -- Karl Hasselström, kha@xxxxxxxxxxx www.treskal.com/kalle - To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html