mirror of
https://we.phorge.it/source/arcanist.git
synced 2024-11-26 00:32:41 +01:00
No description
c8efb41811
Summary: arc land on a hg-svn repository would fail because arc land uses 'hg push -r' to specify which revs to push which is not supported by hg-svn. Now we just use 'hg push' which, when used against svn, only pushes the current branch (which happens to be the branch we're trying to land). We can't use standard 'hg push' for non-svn repos though because when used against a vanilla hg repo 'hg push' pushes all branches. Also remove --new-branch from 'hg push' because it's extremely unlikely that a person wants to create a new branch on the server via arc land. Test Plan: Ran arc land on a normal hg repo, verified it used 'hg push -r'. Ran arc land on a hg-svn repo, verified it used 'hg push' and it pushed the correct changes. Reviewers: epriestley, sid0, dschleimer Reviewed By: epriestley CC: bos, aran, Korvin Maniphest Tasks: T2403 Differential Revision: https://secure.phabricator.com/D4653 |
||
---|---|---|
bin | ||
externals | ||
resources | ||
scripts | ||
src | ||
.arcconfig | ||
.divinerconfig | ||
.editorconfig | ||
.gitignore | ||
LICENSE | ||
NOTICE | ||
README |
WHAT IS ARCANIST? Arcanist is the command-line tool for Phabricator. It allows you to interact with Phabricator installs to send code for review, download patches, transfer files, view status, make API calls, and various other things. You can find a complete user guide here: http://www.phabricator.com/docs/phabricator/article/Arcanist_User_Guide.html For more information about Phabricator, see: http://phabricator.org/ LICENSE Arcanist is released under the Apache 2.0 license except as otherwise noted.