Page MenuHomePhabricator

Always initialize Git repositories with "git init", never with "git clone"
ClosedPublic

Authored by epriestley on Nov 8 2019, 12:07 AM.
Tags
None
Referenced Files
Unknown Object (File)
Tue, Apr 23, 5:28 PM
Unknown Object (File)
Thu, Apr 11, 9:35 AM
Unknown Object (File)
Thu, Apr 4, 7:14 PM
Unknown Object (File)
Fri, Mar 29, 4:27 AM
Unknown Object (File)
Fri, Mar 29, 2:05 AM
Unknown Object (File)
Thu, Mar 28, 8:49 PM
Unknown Object (File)
Mar 18 2024, 1:45 AM
Unknown Object (File)
Feb 28 2024, 2:07 AM
Subscribers
None

Details

Summary

Fixes T13448. We currently "git clone" to initialize repositories, but this will fetch too many refs if "Fetch Refs" is configured.

In modern Phabricator, there's no apparent reason to "git clone"; we can just "git init" instead. This workflow naturally falls through to an update, where we'll do a "git fetch" and pull in exactly the refs we want.

Test Plan
  • Configured an observed repository with "Fetch Refs".
  • Destroyed the working copy.
  • Ran "bin/repository pull X --trace --verbose".
    • Before: saw "git clone" pull in the world.
    • After: saw "git init" create a bare empty working copy, then "git fetch" fill it surgically.

Both flows end up in the same place, this one is just simpler and does less work.

Diff Detail

Repository
rP Phabricator
Branch
refs3
Lint
Lint Passed
Unit
Tests Passed
Build Status
Buildable 23630
Build 32484: Run Core Tests
Build 32483: arc lint + arc unit

Event Timeline

This revision was not accepted when it landed; it landed in state Needs Review.Nov 8 2019, 12:17 AM
This revision was automatically updated to reflect the committed changes.