aboutsummaryrefslogtreecommitdiff
path: root/src/phorkie/GitCommandBinary.php
diff options
context:
space:
mode:
Diffstat (limited to 'src/phorkie/GitCommandBinary.php')
-rw-r--r--src/phorkie/GitCommandBinary.php15
1 files changed, 15 insertions, 0 deletions
diff --git a/src/phorkie/GitCommandBinary.php b/src/phorkie/GitCommandBinary.php
new file mode 100644
index 0000000..13a31db
--- /dev/null
+++ b/src/phorkie/GitCommandBinary.php
@@ -0,0 +1,15 @@
+<?php
+namespace phorkie;
+
+class GitCommandBinary extends \VersionControl_Git_Util_Command
+{
+ /**
+ * Do not strip anything, we're accessing binary files
+ */
+ public function stripEscapeSequence($string)
+ {
+ return $string;
+ }
+}
+
+?> \ No newline at end of file