summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* - Don't leak so many temporary files in the push command.Andreas Gruenbacher2005-02-068-181/+184
| | | | - Include command names in tempfile names to find leaks more easily.
* - Update of the Japanese translation from Yasushi SHOJIAndreas Gruenbacher2005-02-052-32/+15
| | | | <yashi@atmark-techno.com> -- thank you.
* - A new idea...Andreas Gruenbacher2005-02-031-0/+5
|
* - Fix date calculation bug with some versions of GNU date.Andreas Gruenbacher2005-02-022-1/+6
|
* - Use color defaults so that QUILT_COLORS can be used to onlyAndreas Gruenbacher2005-02-023-8/+21
| | | | | | | | override some colors. - When checking for remaining changes (refresh forgotten), use $QUILT_PATCH_OPTS as in the push command to get identical results. Don't generate the actually diff; it doesn't get printed anyway. This should speed up things.
* - Another small regexp fix.Andreas Gruenbacher2005-01-271-1/+1
|
* - Fix a typo in the syntax coloring regexp.Andreas Gruenbacher2005-01-271-1/+1
|
* - Fix a syntax error.Andreas Gruenbacher2005-01-271-1/+1
|
* - lib/backup-files.c: Remove unused command line option andAndreas Gruenbacher2005-01-273-10/+18
| | | | | | | | document the remaining options. - quilt/pop.in: Colorize this as well: "Patch attempted to create file *, which already exists." "can't find file to patch at input line *" "* out of * hunk ignored"
* - Fix pop command for recent coreutils (cp dir dir2/ no longerAndreas Gruenbacher2005-01-252-1/+7
| | | | works if dir2 doesn't yet exist).
* - Add color support for push command output and allow to customizeAndreas Gruenbacher2005-01-236-19/+93
| | | | | colors via the QUILT_COLORS environment variable (for reverse video, etc.).
* - Add mail command, doc/README.MAIL and example ``mail'' commandAndreas Gruenbacher2005-01-2315-105/+744
| | | | | filter in quilt.quiltrc. - Bump version to 0.38.
* - Add a missing find_patch call in the files command.Andreas Gruenbacher2005-01-212-1/+6
|
* Document last changes to bash_completionMartin Quinson2005-01-201-0/+8
|
* Fix file completion; use string comparison when dealing with BASH_VERSION ↵Martin Quinson2005-01-201-8/+21
| | | | (may contain letters)
* - Add a default /etc/quilt.quiltrc file that is sourced if noAndreas Gruenbacher2005-01-115-8/+25
| | | | ~/.quiltrc file exists.
* Add the template to generate the control automaticallyMartin Quinson2005-01-061-0/+34
|
* Document last changes in the packageMartin Quinson2005-01-064-2/+37
|
* Release 0.37-2 to fix #285322Martin Quinson2004-12-131-0/+7
|
* Get ready for the releaseMartin Quinson2004-12-081-4/+12
|
* Useless cleanupMartin Quinson2004-12-081-3/+2
|
* Fix a bashismMartin Quinson2004-12-081-2/+2
|
* Useless cleanupsMartin Quinson2004-11-221-11/+11
|
* Fix groff syntaxMartin Quinson2004-11-221-3/+3
|
* - Push command: Write out output of patch process immediatelyAndreas Gruenbacher2004-11-196-97/+98
| | | | | instead of reading into a variable and then printing that variable. This helps to see what's happening with large patches.
* - Get rid of the apatch and rpatch helper scripts: Integrate themAndreas Gruenbacher2004-11-1515-734/+513
| | | | | in the push and pop commands. This should bring a small performance improvement.
* - Typo.Andreas Gruenbacher2004-11-151-1/+1
|
* - bash_completion: Change [ x '>' y ] to [ x -gt y ].Andreas Gruenbacher2004-11-081-1/+1
|
* - Fix patches command (Brent Casavant <bcasavan@sgi.com>).Andreas Gruenbacher2004-11-082-3/+4
|
* - Missing quotation in bash_completionAndreas Gruenbacher2004-11-082-2/+4
| | | | (Axel Grossklaus <ag@pre-secure.de>).
* - Fix extra trailing space in series file after quilt refreshAndreas Gruenbacher2004-11-082-1/+7
| | | | (David Vrabel <dvrabel@arcom.com>).
* - Add a missing print_patch call (cosmetic).v0.37Andreas Gruenbacher2004-10-172-9/+3
|
* - When applying a patch with -q and without -f no (individual)Andreas Gruenbacher2004-10-178-11/+34
| | | | | | | | | | | reject files are created, and the "patching file" comments are missing as well. In that case, we don't know wich files the "-- saving rejects to file /tmp/foo" comments belong to, and we can't fic them up. Remove them, instead. - Pop command: Touch files after they are restored so that tools like make don't get confused. - Update test cases. - Bump to version 0.37.
* - Fix the version check in bash_completion for bash 3.v0.36Andreas Gruenbacher2004-09-222-2/+5
|
* - scripts/patchfns.in: set the dotglob option so that dot filesAndreas Gruenbacher2004-09-226-12/+60
| | | | | | | | | | | | | will show up in file globs as well. Bug reported by James Rowe. - Add a missing tab to the patch header of files that are removed. Bug reported by James Rowe. - Push command: Without -f or --leave-rejects, when applying a patch failed, the *.rej files were not removed properly. Change the code so that they won't be created in the working tree in the first place this case. - test/run script: Oops, the previouos commit was not the latest version. - Bump version to 0.36.
* - Series command: add missing paths to patches ifAndreas Gruenbacher2004-09-213-2/+16
| | | | | $QUILT_PATCHES_PREFIX is set. - test/run script: Add export and unset statements.
* - Fix a message; took a while. Thanks Yasushi SHOJIAndreas Gruenbacher2004-09-136-12/+11
| | | | <yashi@atmark-techno.com>.
* - bin/quilt.in: Add optional verbose modifier to --trace optionAndreas Gruenbacher2004-09-136-19/+37
| | | | by request of Dean Roehrich <roehrich@sgi.com>.
* - The fork command at some point broke and did not insert theAndreas Gruenbacher2004-09-122-9/+12
| | | | "serial number" in the right place in patch names anymore.
* - scripts/inspect.in: Run the RPM %prep section in /var/tmp andAndreas Gruenbacher2004-09-122-1/+7
| | | | not in /tmp: the sources can become large.
* - Refresh command: recognize and ignore header lines generated byAndreas Gruenbacher2004-08-254-3/+11
| | | | | ``cvs diff''. - Add a missing print_patch call (cosmetic).
* Fix two typos in description. Thanks Matt (Kraii). (Closes: #266195)Martin Quinson2004-08-171-1/+2
|
* Fix typos in description (Thanks Matt Kraai)Martin Quinson2004-08-171-8/+8
|
* typo breaking groff syntaxMartin Quinson2004-08-171-1/+1
|
* Sync to ENMartin Quinson2004-08-171-24/+20
|
* - Add Japanese translation fromAndreas Gruenbacher2004-08-143-1/+1017
| | | | Yasushi SHOJI <yashi@atmark-techno.com>. Thank you.
* - setup command: detect errors when running ``rpm -bp'' andAndreas Gruenbacher2004-08-136-6/+59
| | | | improve the messages of ``quilt setup''.
* - Merge improvement to files command from Dean Roehrich: Allow toAndreas Gruenbacher2004-08-116-95/+207
| | | | | | list all files modified, or all files modified by a range of patches. - Fix pop command help.
* - Working in sub-directories: `quilt new' so far did alwaysAndreas Gruenbacher2004-08-115-27/+19
| | | | | | | | create patches in the current directory, even if the current directory appeared to be a sub-directory of the working tree. This was confusing for several people now. Make `quilt new' behave like all other commands, and thus allow it to be used from within sub-directories.
* - Fix wrong pop command help text.Andreas Gruenbacher2004-08-114-47/+54
|