Page Menu
Home
Phabricator
Search
Configure Global Search
Log In
Files
F15337752
D8107.id18334.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
D8107.id18334.diff
View Options
diff --git a/src/applications/repository/engine/PhabricatorRepositoryMirrorEngine.php b/src/applications/repository/engine/PhabricatorRepositoryMirrorEngine.php
--- a/src/applications/repository/engine/PhabricatorRepositoryMirrorEngine.php
+++ b/src/applications/repository/engine/PhabricatorRepositoryMirrorEngine.php
@@ -55,9 +55,17 @@
$this->log(pht('Pushing to remote "%s"...', $mirror->getRemoteURI()));
- if (!$proxy->isGit()) {
+ if ($proxy->isGit()) {
+ $this->pushToGitRepository($proxy);
+ } elseif ($proxy->isHg()) {
+ $this->pushToHgRepository($proxy);
+ } else {
throw new Exception(pht('Unsupported VCS!'));
}
+ }
+
+ private function pushToGitRepository(
+ PhabricatorRepository $proxy) {
$future = $proxy->getRemoteCommandFuture(
'push --verbose --mirror -- %P',
@@ -68,4 +76,24 @@
->resolvex();
}
+ private function pushToHgRepository(
+ PhabricatorRepository $proxy) {
+
+ $future = $proxy->getRemoteCommandFuture(
+ 'push --verbose --rev tip -- %P',
+ $proxy->getRemoteURIEnvelope());
+
+ try {
+ $future
+ ->setCWD($proxy->getLocalPath())
+ ->resolvex();
+ } catch (CommandException $ex) {
+ if (preg_match('/no changes found/', $ex->getStdOut())) {
+ // mercurial says nothing changed, but that's good
+ } else {
+ throw $ex;
+ }
+ }
+ }
+
}
diff --git a/src/applications/repository/storage/PhabricatorRepository.php b/src/applications/repository/storage/PhabricatorRepository.php
--- a/src/applications/repository/storage/PhabricatorRepository.php
+++ b/src/applications/repository/storage/PhabricatorRepository.php
@@ -1038,7 +1038,7 @@
}
public function canMirror() {
- if ($this->isGit()) {
+ if ($this->isGit() || $this->isHg()) {
return true;
}
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Mon, Mar 10, 7:33 AM (3 w, 5 d ago)
Storage Engine
blob
Storage Format
Encrypted (AES-256-CBC)
Storage Handle
7413743
Default Alt Text
D8107.id18334.diff (1 KB)
Attached To
Mode
D8107: Add basic support for mirroring Mercurial repositories
Attached
Detach File
Event Timeline
Log In to Comment