Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F104096712
PhabricatorRepositoryConfigOptions.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Thu, Mar 6, 11:14
Size
1 KB
Mime Type
text/x-php
Expires
Sat, Mar 8, 11:14 (1 d, 19 h)
Engine
blob
Format
Raw Data
Handle
24634727
Attached To
rPH Phabricator
PhabricatorRepositoryConfigOptions.php
View Options
<?php
/**
* @group repository
*/
final
class
PhabricatorRepositoryConfigOptions
extends
PhabricatorApplicationConfigOptions
{
public
function
getName
()
{
return
pht
(
'Repositories'
);
}
public
function
getDescription
()
{
return
pht
(
'Configure repositories.'
);
}
public
function
getOptions
()
{
return
array
(
$this
->
newOption
(
'repository.default-local-path'
,
'string'
,
null
)
->
setSummary
(
pht
(
"Default location to store local copies of repositories."
))
->
setDescription
(
pht
(
"The default location in which to store local copies of "
.
"repositories. Anything stored in this directory will be assumed "
.
"to be under the control of phabricator, which means that "
.
"Phabricator will try to do some maintenance on working copies "
.
"if there are problems (such as a change to the remote origin "
.
"url). This maintenance may include completely removing (and "
.
"recloning) anything in this directory.
\n\n
"
.
"When set to null, this option is ignored (i.e. Phabricator will "
.
"not fully control any working copies)."
)),
);
}
}
Event Timeline
Log In to Comment