Page Menu
Home
Phabricator
Search
Configure Global Search
Log In
Files
F15470881
D16387.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
880 B
Referenced Files
None
Subscribers
None
D16387.diff
View Options
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
Details
Attached
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)
Attached To
Mode
D16387: Correctly parse file renames and copies from `git diff --raw`
Attached
Detach File
Event Timeline
Log In to Comment