hooks: distinguish between locally committed and incoming changes.

"commit" hook is now for locally committed changes only.
"incoming" is for changes pulled, pushed, or unbundled into local repo.
This commit is contained in:
Daniel Santa Cruz 2006-02-10 16:45:56 -05:00
parent c329a8e132
commit 4cdd5950a7

View File

@ -1386,7 +1386,7 @@ class localrepository(object):
return 1
for i in range(cor + 1, cnr + 1):
self.hook("commit", node=hex(self.changelog.node(i)))
self.hook("incoming", node=hex(self.changelog.node(i)))
return