1 2005-07-11 Catalin Marinas <catalin.marinas@gmail.com>
3 * stgit/main.py (export): Add --template option to use a different
4 file as the export template rather than the default one
5 (delete): Check for local changes only of the current patch is
8 2005-07-09 Catalin Marinas <catalin.marinas@gmail.com>
12 2005-07-09 Peter Osterlund <petero2@telia.com>
16 2005-07-08 Catalin Marinas <catalin.marinas@gmail.com>
18 * stgit/main.py (diff): Add '--stat' option to 'diff'
19 (files): 'files' command implemented
21 2005-07-08 Peter Osterlund <petero2@telia.com>
23 * stgit/git.py (diffstat): %(diffstat)s variable support in the
26 2005-07-07 Catalin Marinas <catalin.marinas@gmail.com>
28 * stgit/main.py (resolved): Implemented a 'resolved' command to
29 mark conflicts as solved. The 'status' command now shows the
30 conflicts as well. 'refresh' fails if there are conflicts
32 2005-07-06 Catalin Marinas <catalin.marinas@gmail.com>
34 * stgit/stack.py (edit_file): Added support for patchdescr.tmpl
36 * stgit/main.py (export): Added support for more variables in the
39 * stgit/stack.py (Patch): Add support for author/comitter default
42 * stgit/main.py (push): '--undo' option added to push. This option
43 allows one to undo the last push operation and restores the old
44 boundaries of the patch (prior to the push operation)
45 (pop): pop optimised to switch directly to the last patch to be
48 2005-07-05 Catalin Marinas <catalin.marinas@gmail.com>
50 * stgit/main.py (pop): add '--to' option to 'pop'
51 (push): add '--to' and '--reverse' options to 'push'
53 * gitmergeonefile.py: Added support for 'keeporig' option which
54 selects whether to delete or not the original files after a failed
57 2005-07-04 Catalin Marinas <catalin.marinas@gmail.com>
59 * Add support for configurable merge tool via stgitrc
61 * Add support for configuration file (/etc/stgitrc, ~/.stgitrc,
64 2005-07-02 Catalin Marinas <catalin.marinas@gmail.com>
66 * stgit/main.py (export): Added support for the patch description
67 template. At the moment, only the '%(description)s' variable is
70 2005-07-01 Catalin Marinas <catalin.marinas@gmail.com>
72 * stgit/main.py (refresh): Now it also checks for head != top
73 (export): Add the patch description to the exported patch files
75 2005-06-30 Catalin Marinas <catalin.marinas@gmail.com>
77 * Fix exception reporting when the .git/HEAD link is not valid
79 * Empty patches are now marked
81 2005-06-28 Catalin Marinas <catalin.marinas@gmail.com>
85 * stgit/stack.py (Series.push_patch): if the merge with the new
86 base failed, inform the user that "refresh" should be run after
89 * stgit/main.py (new): checks for local changes and head != top
92 * StGIT is now closer to Quilt in functionality. The 'commit'
93 command was removed ('refresh' is used instead).
95 2005-06-25 Catalin Marinas <catalin.marinas@gmail.com>
97 * stack.py modified to include all the series functions the Series
100 2005-06-24 Catalin Marinas <catalin.marinas@gmail.com>
102 * stgit/git.py (commit): commit tells before invoking the editor
103 and shows the return error code but without exiting if it is
106 2005-06-23 Catalin Marinas <catalin.marinas@gmail.com>
108 * stgit/main.py (push): --number option added to push
109 (pop): --number option added to push
111 2005-06-22 Catalin Marinas <catalin.marinas@gmail.com>
113 * gitmergeonefile.py: temporary files are placed in <path>.local,
114 <path>.older and <path>.remote and only removed if the merge
117 2005-06-21 Catalin Marinas <catalin.marinas@gmail.com>
119 * stgit/main.py (delete): 'delete' now requires the explicit patch
120 name as a safety measure
122 * stgit/stack.py (pop_patch): sys.stdout.flush() added after the
124 (push_patch): fix bug with 'push' not warning for empty patches
126 * stgit/stack.py (push_patch): sys.stdout.flush() added after the
129 2005-06-20 Catalin Marinas <catalin.marinas@gmail.com>
133 * stgit/stack.py (delete_patch): bug when deleting the topmost
136 * top/bottom files are backed up to top.old/bottom.old
137 automatically. The 'diff' command supports them as well
139 * stg-upgrade.sh: upgrades the .git structure from stgit-0.1 to
142 2005-06-19 Catalin Marinas <catalin.marinas@gmail.com>
144 * Multiple heads and bases are now supported. A different series
145 is available for each head
147 * gitmergeonefile.py: fix bug caused by not updating the cache
148 when merging with diff3
150 * stgit/stack.py: 'push' command reports a warning if the patch is
153 * stgit/git.py: commit supports an 'allowempty' parameter
155 * os.path.join() used instead '+' for concatenating path names
157 2005-06-15 Catalin Marinas <catalin.marinas@gmail.com>