From 518d019508cf05471be6b249d1e0f66961a8eb6d Mon Sep 17 00:00:00 2001 From: Andreas Gruenbacher Date: Wed, 22 Sep 2004 11:48:33 +0000 Subject: - scripts/patchfns.in: set the dotglob option so that dot files 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. --- test/dotglob.test | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 test/dotglob.test (limited to 'test/dotglob.test') diff --git a/test/dotglob.test b/test/dotglob.test new file mode 100644 index 0000000..11c93dd --- /dev/null +++ b/test/dotglob.test @@ -0,0 +1,23 @@ + $ mkdir d + $ cd d + + $ quilt new dotglob.diff + > Patch patches/dotglob.diff is now on top + + $ quilt add .foo + > File .foo added to patch patches/dotglob.diff + + $ echo dot-foo > .foo + $ quilt refresh + > Refreshed patch patches/dotglob.diff + + $ quilt pop -q + > Removing patch patches/dotglob.diff + > No patches applied + + $ quilt push -q + > Applying patch patches/dotglob.diff + > Now at patch patches/dotglob.diff + + $ cd .. + $ rm -rf d -- cgit