##// END OF EJS Templates
localrepo: drop force check from checkcommitpatterns...
timeless -
r28814:1f65f291 default
parent child Browse files
Show More
@@ -1479,8 +1479,7 b' class localrepository(object):'
1479
1479
1480 def checkcommitpatterns(self, wctx, vdirs, match, status, fail):
1480 def checkcommitpatterns(self, wctx, vdirs, match, status, fail):
1481 """check for commit arguments that aren't commitable"""
1481 """check for commit arguments that aren't commitable"""
1482 force = False
1482 if match.isexact() or match.prefix():
1483 if not force and (match.isexact() or match.prefix()):
1484 matched = set(status.modified + status.added + status.removed)
1483 matched = set(status.modified + status.added + status.removed)
1485
1484
1486 for f in match.files():
1485 for f in match.files():
General Comments 0
You need to be logged in to leave comments. Login now