Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F4852507
DiffusionGitCommandEngine.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Award Token
Flag For Later
Advanced/Developer...
View Handle
View Hovercard
Size
1 KB
Referenced Files
None
Subscribers
None
DiffusionGitCommandEngine.php
View Options
<?php
final
class
DiffusionGitCommandEngine
extends
DiffusionCommandEngine
{
protected
function
canBuildForRepository
(
PhabricatorRepository
$repository
)
{
return
$repository
->
isGit
(
)
;
}
protected
function
newFormattedCommand
(
$pattern
,
array
$argv
)
{
$pattern
=
"git {$pattern}"
;
return
array
(
$pattern
,
$argv
)
;
}
protected
function
newCustomEnvironment
(
)
{
$env
=
array
(
)
;
// NOTE: See T2965. Some time after Git 1.7.5.4, Git started fataling if
// it can not read $HOME. For many users, $HOME points at /root (this
// seems to be a default result of Apache setup). Instead, explicitly
// point $HOME at a readable, empty directory so that Git looks for the
// config file it's after, fails to locate it, and moves on. This is
// really silly, but seems like the least damaging approach to
// mitigating the issue.
$env
[
'HOME'
]
=
PhabricatorEnv
::
getEmptyCWD
(
)
;
$env
[
'GIT_SSH'
]
=
$this
->
getSSHWrapper
(
)
;
$env
[
'GIT_SSH_VARIANT'
]
=
'ssh'
;
if
(
$this
->
isAnyHTTPProtocol
(
)
)
{
$uri
=
$this
->
getURI
(
)
;
if
(
$uri
)
{
$proxy
=
PhutilHTTPEngineExtension
::
buildHTTPProxyURI
(
$uri
)
;
if
(
$proxy
)
{
if
(
$this
->
isHTTPSProtocol
(
)
)
{
$env_key
=
'https_proxy'
;
}
else
{
$env_key
=
'http_proxy'
;
}
$env
[
$env_key
]
=
(string)
$proxy
;
}
}
}
return
$env
;
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Mon, Jun 9, 06:36 (22 h, 26 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
1757066
Default Alt Text
DiffusionGitCommandEngine.php (1 KB)
Attached To
Mode
rP Phorge
Attached
Detach File
Event Timeline
Log In to Comment