Page Menu
Home
Phabricator
Search
Configure Global Search
Log In
Files
F15427899
D16425.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
1 KB
Referenced Files
None
Subscribers
None
D16425.diff
View Options
diff --git a/src/parser/ArcanistDiffParser.php b/src/parser/ArcanistDiffParser.php
--- a/src/parser/ArcanistDiffParser.php
+++ b/src/parser/ArcanistDiffParser.php
@@ -1310,11 +1310,17 @@
/**
- * Split the paths on a "diff --git" line into old and new paths. This
- * is difficult because they may be ambiguous if the files contain spaces.
+ * Extracts the common filename from two strings with differing path
+ * prefixes as found after `diff --git`. These strings may be
+ * quoted; if so, the filename is returned unescaped. The prefixes
+ * default to "a/" and "b/", but may be any string -- or may be
+ * entierly absent. This function may return "null" if the hunk
+ * represents a file move or copy, and with pathological renames may
+ * return an incorrect value. Such cases are expected to be
+ * recovered by later rename detection codepaths.
*
* @param string Text from a diff line after "diff --git ".
- * @return pair<string, string> Old and new paths.
+ * @return string Filename being altered, or null for a rename.
*/
public static function extractGitCommonFilename($paths) {
$matches = null;
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Mon, Mar 24, 4:51 PM (1 w, 4 d ago)
Storage Engine
blob
Storage Format
Encrypted (AES-256-CBC)
Storage Handle
7592196
Default Alt Text
D16425.diff (1 KB)
Attached To
Mode
D16425: Update documentation for changed splitGitDiffPaths function
Attached
Detach File
Event Timeline
Log In to Comment