##// END OF EJS Templates
clfilter: ensure changeset creation in the repo is run unfiltered...
Pierre-Yves David -
r18000:f9459bcd default
parent child Browse files
Show More
@@ -1240,6 +1240,7 b' class localrepository(object):'
1240
1240
1241 return fparent1
1241 return fparent1
1242
1242
1243 @unfilteredmeth
1243 def commit(self, text="", user=None, date=None, match=None, force=False,
1244 def commit(self, text="", user=None, date=None, match=None, force=False,
1244 editor=False, extra={}):
1245 editor=False, extra={}):
1245 """Add a new revision to current repository.
1246 """Add a new revision to current repository.
@@ -1410,6 +1411,7 b' class localrepository(object):'
1410 self._afterlock(commithook)
1411 self._afterlock(commithook)
1411 return ret
1412 return ret
1412
1413
1414 @unfilteredmeth
1413 def commitctx(self, ctx, error=False):
1415 def commitctx(self, ctx, error=False):
1414 """Add a new revision to current repository.
1416 """Add a new revision to current repository.
1415 Revision information is passed via the context argument.
1417 Revision information is passed via the context argument.
@@ -2291,6 +2293,7 b' class localrepository(object):'
2291
2293
2292 return changegroup.unbundle10(util.chunkbuffer(gengroup()), 'UN')
2294 return changegroup.unbundle10(util.chunkbuffer(gengroup()), 'UN')
2293
2295
2296 @unfilteredmeth
2294 def addchangegroup(self, source, srctype, url, emptyok=False):
2297 def addchangegroup(self, source, srctype, url, emptyok=False):
2295 """Add the changegroup returned by source.read() to this repo.
2298 """Add the changegroup returned by source.read() to this repo.
2296 srctype is a string like 'push', 'pull', or 'unbundle'. url is
2299 srctype is a string like 'push', 'pull', or 'unbundle'. url is
General Comments 0
You need to be logged in to leave comments. Login now