Page MenuHomePhabricator

In Subversion, treat missing files similarly to conflicted files
ClosedPublic

Authored by epriestley on Jan 3 2014, 8:13 PM.
Tags
None
Referenced Files
F15444513: D7886.diff
Thu, Mar 27, 9:51 AM
F15420556: D7886.diff
Fri, Mar 21, 2:59 PM
F15418800: D7886.id17839.diff
Fri, Mar 21, 1:34 AM
F15412486: D7886.diff
Wed, Mar 19, 1:13 PM
F15395475: D7886.id17840.diff
Sun, Mar 16, 7:14 AM
F15332078: D7886.diff
Fri, Mar 7, 4:29 PM
Unknown Object (File)
Feb 3 2025, 2:48 PM
Unknown Object (File)
Jan 22 2025, 3:11 AM
Subscribers

Details

Summary

See https://github.com/facebook/arcanist/issues/133. Treat "!" files like "C" and "?" files and make the user deal with them.

Test Plan
>>> orbital ~/repos/INIS $ svn st
!       README
>>> orbital ~/repos/INIS $ arc diff
Usage Exception: You have missing files in this working copy. Revert or formally remove them (with `svn rm`) before proceeding.

  Working copy: /INSECURE/repos/INIS/

  Missing files in working copy:
    README

Diff Detail

Lint
Lint Skipped
Unit
Tests Skipped

Event Timeline

src/workflow/ArcanistBaseWorkflow.php
829–848

Particularly, this parallels these existing blocks which handle similar situations.

Also note that arc diff does not automatically execute svn add -- it prompts the user:

$ arc diff
You have untracked files in this working copy.

  Working copy: /INSECURE/repos/INIS/

  Untracked files in working copy:
    newfile

Since you don't have 'svn:ignore' rules for these files, you may have
forgotten to 'svn add' them.


    Do you want to add this file to the commit? [y/N] 

This is more common and less ambiguous than the incomplete, conflict, or missing cases: we can't reasonably do anything automatic on conflicts, incomplete is extremely rare, and missing should be rare and seems vaguely dangerous to prompt for automatic resolution.