Page MenuHomePhabricator

D16387.diff
No OneTemporary

D16387.diff

diff --git a/src/repository/api/ArcanistGitAPI.php b/src/repository/api/ArcanistGitAPI.php
--- a/src/repository/api/ArcanistGitAPI.php
+++ b/src/repository/api/ArcanistGitAPI.php
@@ -826,6 +826,22 @@
$mask |= self::FLAG_EXTERNALS;
} else if (isset($flags[$flag])) {
$mask |= $flags[$flag];
+ } else if ($flag[0] == 'R') {
+ $both = explode("\t", $file);
+ if ($full) {
+ $files[$both[0]] = array(
+ 'mask' => $mask | self::FLAG_DELETED,
+ 'ref' => str_repeat('0', 40),
+ );
+ } else {
+ $files[$both[0]] = $mask | self::FLAG_DELETED;
+ }
+ $file = $both[1];
+ $mask |= self::FLAG_ADDED;
+ } else if ($flag[0] == 'C') {
+ $both = explode("\t", $file);
+ $file = $both[1];
+ $mask |= self::FLAG_ADDED;
}
if ($full) {

File Metadata

Mime Type
text/plain
Expires
Sun, Apr 6, 1:54 AM (16 h, 17 m)
Storage Engine
blob
Storage Format
Encrypted (AES-256-CBC)
Storage Handle
7592226
Default Alt Text
D16387.diff (880 B)

Event Timeline