mirror of
https://we.phorge.it/source/arcanist.git
synced 2024-12-23 05:50:54 +01:00
No description
e573610ce4
Summary: This adds a arcconfig setting to allow specifying whether to use the merge or rebase strategy when doing the feature branch update. arc.land.update.default can be set to either 'rebase' or 'merge'. The command line flags will override this setting. We have had trouble with arc land producing merge commits (introduced with D4080) in git. They usually appear when arc land fails, and our users are confused by the presence of a merge commit afterwards. Today it got even worse since a user managed to get arc land to push the merge commit to the server. This setting will allow us to turn it off for our uses. Test Plan: Verified the following combinations: update.default not set + arc land (saw git merge in the trace) update.default = 'rebase' + arc land (saw git rebase) update.default = 'merge' + arc land (saw git merge) update.default = 'rebase' + arc land --update-with-merge (saw git merge) update.default = 'merge' + arc land --update-with-rebase (saw git rebase) Reviewers: epriestley Reviewed By: epriestley CC: aran, Korvin Differential Revision: https://secure.phabricator.com/D5683 |
||
---|---|---|
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.