Page MenuHomePhabricator

Fix arc land on odd/modern git-svn checkouts
ClosedPublic

Authored by asherkin on Sep 17 2018, 2:42 PM.
Tags
None
Referenced Files
Unknown Object (File)
Sun, Mar 24, 1:57 AM
Unknown Object (File)
Thu, Mar 21, 5:46 PM
Unknown Object (File)
Thu, Mar 14, 4:55 PM
Unknown Object (File)
Feb 19 2024, 5:20 AM
Unknown Object (File)
Feb 13 2024, 9:05 PM
Unknown Object (File)
Feb 3 2024, 7:26 PM
Unknown Object (File)
Jan 16 2024, 11:00 PM
Unknown Object (File)
Jan 8 2024, 4:38 PM
Subscribers

Details

Summary

The current code assumes git-svn is always working from a remote called
trunk, but if the repository is initialized without the -T option it
will instead be called git-svn, and if --prefix is used (which is
set by default to origin/ in Git 2+) the remote name will have the
specified prefix as well.

Instead, look at the fetch target refspec set in the git-svn config.

Fixes T13293.

Test Plan

arc land without errors (or manually creating a trunk branch) from a
checkout made with Git 2.18.0 (verified this manually on a non--T
checkout as well).

Diff Detail

Repository
rARC Arcanist
Lint
Lint Not Applicable
Unit
Tests Not Applicable

Event Timeline

Can you file a task for this that has step-by-step reproduction instructions (e.g., run this command, then run this command, here's where the thing breaks before this change)? I think this change is likely fine, I'm just not confident I'll be able to reproduce the issue when this refactors during T13098.

This revision now requires changes to proceed.May 14 2019, 2:24 PM
src/workflow/ArcanistLandWorkflow.php
319–320

Re-visiting this after the testing today, I'm not 100% confident this is actually going to behave correctly with multiple git-svn remotes or tracking branches, but neither are something I've ever used with it.

Thanks, T13293 makes this much clearer.

src/workflow/ArcanistLandWorkflow.php
319–320

I'm comfortable waiting for this to explode somewhere, multiple git-svn remotes seems wildly ambitious.

This revision is now accepted and ready to land.May 22 2019, 4:30 PM

Thanks for the review - I dropped in a comment referencing the task when committing so it's clear why this is here when the refactoring comes along 🙂