##// END OF EJS Templates
hg qseries -m: guards file was not ignored
Thomas Arendsen Hein -
r4241:7c59ade0 default
parent child Browse files
Show More
@@ -1146,7 +1146,8 b' class queue:'
1146 1146 for f in files:
1147 1147 fl = os.path.join(d, f)
1148 1148 if (fl not in self.series and
1149 fl not in (self.status_path, self.series_path)
1149 fl not in (self.status_path, self.series_path,
1150 self.guards_path)
1150 1151 and not fl.startswith('.')):
1151 1152 msng_list.append(fl)
1152 1153 msng_list.sort()
@@ -143,3 +143,8 b' for patch in `hg qseries`; do'
143 143 echo % hg qunapplied $patch
144 144 hg qunapplied $patch
145 145 done
146
147 echo % hg qseries -m: only b.patch should be shown
148 echo the guards file was not ignored in the past
149 hg qdelete -k b.patch
150 hg qseries -m
@@ -174,3 +174,6 b' d.patch'
174 174 new.patch
175 175 c.patch
176 176 % hg qunapplied d.patch
177 % hg qseries -m: only b.patch should be shown
178 the guards file was not ignored in the past
179 b.patch
General Comments 0
You need to be logged in to leave comments. Login now