blob: 64a6f98047f3d7eba2173d6726f4dae243bedcbb [file] [log] [blame]
package org.apache.maven.scm.provider.hg.command;
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
/**
* Available/Used hg commands.
* <p/>
* These commands do not necessarily correspond to the SCM API.
* Eg. "check in" is translated to be "commit" and "push".
*
* @author <a href="mailto:thurner.rupert@ymono.net">thurner rupert</a>
*/
public final class HgCommandConstants
{
private HgCommandConstants()
{
// no o
}
/**
* Executable for Hg
*/
public static final String EXEC = "hg";
/**
* Use to create an empty branch or before importing an existing project
*/
public static final String INIT_CMD = "init";
/**
* Default recursive. Common option: --dry-run and --no-recursive
*/
public static final String ADD_CMD = "add";
/**
* Reports the following states: added, removed, modified, unchanged, unknown
*/
public static final String STATUS_CMD = "status";
/**
* Make a file unversioned
*/
public static final String REMOVE_CMD = "remove";
/**
* Create a new copy of a branch. Alias get or clone
*/
public static final String CLONE_CMD = "clone";
/**
* Create a new branch in the repo.
*/
public static final String BRANCH_CMD = "branch";
/**
* Commit changes into a new revision
*/
public static final String COMMIT_CMD = "commit";
/**
* update working-copy to tip
*/
public static final String UPDATE_CMD = "update";
/**
* Pull any changes from another branch into the current one
*/
public static final String PULL_CMD = "pull";
/**
* Show log of this branch Common option: --revision
*/
public static final String LOG_CMD = "log";
/**
* Show differences in workingtree. Common option: --revision
*/
public static final String DIFF_CMD = "diff";
/**
* Push this branch into another branch
*/
public static final String PUSH_CMD = "push";
/**
* Show current revision number
*/
public static final String REVNO_CMD = "id";
/**
* Tag this revision
*/
public static final String TAG_CMD = "tag";
/**
* Show list of the current working copy or a revision
*/
public static final String INVENTORY_CMD = "locate";
/**
* Outgoing changes command
*/
public static final String OUTGOING_CMD = "outgoing";
/**
* Named branch command
*/
public static final String BRANCH_NAME_CMD = "branch";
/**
* no recurse option does not exist in mercurial
*/
public static final String NO_RECURSE_OPTION = "";
public static final String MESSAGE_OPTION = "--message";
public static final String REVISION_OPTION = "-r";
public static final String DATE_OPTION = "--date";
public static final String VERBOSE_OPTION = "--verbose";
public static final String NO_MERGES_OPTION = "--no-merges";
public static final String VERSION = "version";
public static final String CHECK = "check";
public static final String ALL_OPTION = "-A";
public static final String NEW_BRANCH_OPTION = "--new-branch";
public static final String CLEAN_OPTION = "-c";
public static final String TEMPLATE_OPTION = "--template";
/**
* limit number of changes displayed
*/
public static final String LIMIT_OPTION = "--limit";
/**
* A template for the log output in order to decouple the date parsing from
* system and java locale, also helps avoiding bug due changes on the
* verbose format for log command.
*/
public static final String TEMPLATE_FORMAT =
"changeset: {rev}:{node|short}\\nbranch: {branch}\\nuser: {author}\\n"
+ "date: {date|isodatesec}\\ntag: {tags}\\nfiles: {files}\\ndescription:\\n{desc}\\n";
}