Page MenuHomePhabricator

Make `repository pull` install hooks the first time
ClosedPublic

Authored by epriestley on Dec 23 2013, 5:33 PM.
Tags
None
Referenced Files
F15464620: D7818.id.diff
Wed, Apr 2, 11:24 AM
F15458538: D7818.diff
Mon, Mar 31, 4:31 AM
F15415259: D7818.id.diff
Thu, Mar 20, 5:05 AM
F15390553: D7818.id17694.diff
Sat, Mar 15, 6:19 AM
F15385544: D7818.id17691.diff
Fri, Mar 14, 10:49 PM
Unknown Object (File)
Feb 15 2025, 10:19 AM
Unknown Object (File)
Feb 10 2025, 2:58 AM
Unknown Object (File)
Feb 10 2025, 1:18 AM
Subscribers

Details

Summary

Ref T4257. Currently, the pull logic looks like this:

if (new) {
  create();
} else {
  if (hosted) {
    install_hooks();
  } else {
    update();
  }
}

This means that the first time you run repository pull, hooks aren't installed, which makes debugging trickier. Instead, reorganize the logic:

if (new) {
  create();
} else {
  if (!hosted) {
    update();
  }
}

if (hosted) {
  install_hooks();
}
Test Plan

Ran bin/repository pull on a new hg repo and got hooks installed immediately.

Diff Detail

Lint
Lint Skipped
Unit
Tests Skipped