Size: 11459
Comment: Partially translated UsingExtensions to Japanese.
|
Size: 25206
Comment: sync with UsingExtensions@373
|
Deletions are marked like this. | Additions are marked like this. |
Line 3: | Line 3: |
''このページは UsingExtensions の日本語訳です。'' |
|
Line 7: | Line 4: |
Mercurial にはエクステンションという便利な仕組みが備わっており、新しいコマンドを追加することができます。 エクステンションは新しい機能を作成するための手段を提供しており、 その機能はビルトインコマンドと同じように hg のコマンドラインから直接利用可能です。 エクステンションについて詳しくは、 'hg help extensions' (Mercurial 1.3以降) を参照してください。 エクステンションカテゴリ内のページについては CategoryExtension を、 インストールとエクステンションの書き方については WritingExtensions を参照してください。 |
Mercurial の機能を任意のエクステンションで拡張しよう。 |
Line 19: | Line 8: |
== はじめに == Mercurial は安全で分かりやすいコマンドセットを提供しており、たいていのユーザーがその機能を満足できるように設計されています。 Mercurial のパワーユーザーはエクステンションを活用できるかもしれません。エクステンションを使うと、強力な新機能を Mercurial のコアに統合することができます。 <!> エクステンションが提供する機能は、 Mercurial のポリシー、つまり、安全性、信頼性、使い易さを満たしていないかもしれません。 エクステンションのヘルプは '`hg help extensions`' で表示できます。有効にしたエクステンションのヘルプを見るには、 '`hg help <extension-name>`' を実行してください。 |
|
Line 20: | Line 16: |
Line 29: | Line 24: |
エクステンションをフルパスで指定してもかまいません: |
エクステンションをフルパスで指定してもかまいません (.py ファイル名か {{{__init__.py}}} のあるフォルダ名): |
Line 36: | Line 30: |
Mercurial と共に配布されていないエクステンションを使うには、ダウンロード後どこでも良いのでファイルシステム上に置いてください。この例では、 {{{~/.hgext/}}} にダウンロードしています。 '''注意: Windows 環境でディレクトリを指定する場合は、末尾にバックスラッシュをつけないでください。 (Bts:issue4187)''' | |
Line 38: | Line 33: |
Line 42: | Line 38: |
hgext.bar = !/path/to/extension/bar.py | bar = !/path/to/extension/bar.py |
Line 44: | Line 40: |
hgext.baz = ! | baz = ! |
Line 46: | Line 42: |
Line 50: | Line 45: |
以下のエクステンションは Mercurial プロジェクトで保守・配布しています。 | |
Line 52: | Line 48: |
||'''alias''' ||AliasExtension ||コマンドにユーザー定義の別名を || ||'''bisect''' ||BisectExtension ||履歴の2分探索(O(log(n))でバグや機能が入ったリビジョンをサクッと見つける。 '''Mercurial 1.0 以降はビルトイン''' || ||'''bookmarks''' ||BookmarksExtension ||Markers on commits that move on commit || ||'''bugzilla''' ||BugzillaExtension ||Update Bugzilla entries when a bug id is referenced in a changeset || ||'''children''' ||ChildrenExtension ||Display children revisions || |
||'''blackbox''' ||BlackboxExtension ||Log events to .hg/blackbox.log for post-mortem debugging || ||'''bugzilla''' ||BugzillaExtension ||チェンジセットで Bugzilla の ID を参照していれば、エントリーを更新 || ||'''censor''' ||CensorExtension || Erase file content at a given revision || |
Line 58: | Line 52: |
||'''clonebundles''' ||ClonebundlesExtension || Advertise pre-generated bundles to seed clones || ||'''color''' ||ColorExtension ||カラフルな diff, status, qseries コマンド || |
|
Line 59: | Line 55: |
||'''color''' ||ColorExtension ||カラフルな diff, status, qseries コマンド || | ||'''eol''' ||EolExtension ||Translate line-ending characters between working copy and repository || |
Line 61: | Line 57: |
||'''fetch''' ||FetchExtension ||pull, merge, update は1ステップでどう? || | ||'''factotum''' ||FactotumExtension ||HTTP authentication with factotum || ||'''fsmonitor''' ||FsMonitorExtension ||Integrates the file-monitoring program watchman with Mercurial to produce faster status results. || |
Line 63: | Line 60: |
||'''graphlog''' ||GraphlogExtension ||ASCII アートのリビジョングラフと履歴を並べて表示 || ||'''hgcia''' ||HgciaExtension ||Send notifications to [[http://cia.navi.cx|CIA]] || |
||'''hgcia''' ||HgciaExtension ||[[http://cia.navi.cx|CIA]] に通知 || |
Line 67: | Line 63: |
||'''imerge''' ||ImergeExtension ||Perform interactive, interruptible merges || ||'''inotify''' ||InotifyExtension ||linux 2.6 inotify API を用いて status を瞬時に更新 || ||'''interhg''' ||InterhgExtension ||This extension allows you to change changelog and summary text just like InterWiki way || ||'''keyword''' ||KeywordExtension ||use CVS like keyword expansion in tracked files || |
||'''histedit''' ||HisteditExtension ||Edit, fold, drop changesets in the style of {{{git rebase --interactive}}} || ||'''keyword''' ||KeywordExtension ||管理中のファイルで CVS 風のキーワード展開 || ||'''largefiles''' ||LargefilesExtension ||Track large binary files (new in 2.0) || |
Line 74: | Line 69: |
||'''parentrevspec''' ||ParentrevspecExtension ||use `foo^` to refer to the parent of revision `foo` || | |
Line 76: | Line 70: |
||'''purge''' ||PurgeExtension ||Purge all files and dirs in the repository that are not being tracked by Mercurial || ||'''rebase''' ||RebaseExtension ||リビジョンの分岐点を移動 || ||'''record''' ||RecordExtension ||Select working directory changes to commit by hunk à la darcs record || |
||'''purge''' ||PurgeExtension ||Mercurial で管理していないファイル・ディレクトリを消去 || ||'''rebase''' ||JapaneseRebaseExtension ||リビジョンの分岐点を移動 || ||'''relink''' ||RelinkExtension ||Recreates hardlinks between repository clones || ||'''schemes''' ||SchemesExtension ||Add shortcuts to urls as url schemes || |
Line 80: | Line 75: |
||'''shelve''' ||ShelveExtension || Save and restore changes to the working directory || ||'''strip''' ||StripExtension || Strip changesets and their descendants from history || |
|
Line 81: | Line 78: |
||'''win32mbcs''' ||Win32mbcsExtension ||Allow to use shift_jis/big5 filenames on Windows. || ||'''win32text''' ||Win32TextExtension ||Manage line ending conversion for Windows repositories || ||'''zeroconf''' ||ZeroconfExtension ||Announce and browser respositories via zeroconf/bonjour || |
||'''win32mbcs''' ||JapaneseWin32mbcsExtension ||Windows で shift_jis・big5 ファイル名を使う || ||'''zeroconf''' ||ZeroconfExtension ||Announce and browse respositories via zeroconf/bonjour || |
Line 89: | Line 84: |
||''名称'' ||''ページ'' ||''説明'' || | These extensions are '''not''' distributed together with Mercurial. The Mercurial project provides no guarantees about these and does '''not''' maintain or test them. Note that Mercurial explicitly does '''not''' provide a ''stable API'' for extension programmers, so it is up to their respective providers/maintainers to adapt them to [[ApiChanges|API changes]]. ||'''actionlog''' ||ActionLogExtension ||Provides hook intended to help keep track of a remote repository's state that multiple people have access to update || |
Line 91: | Line 91: |
||'''all_dirs''' ||AllDirsExtension ||Execute the same Mercurial command in all repositories down directory tree. || ||'''allpaths''' ||AllPathsExtension ||Run commands like `push` on multiple paths || ||'''artemis''' ||ArtemisExtension ||Simple and light-weight issue tracker || |
|
Line 92: | Line 95: |
||'''automv''' ||AutomvExtension ||Automatically detect file renames || | |
Line 93: | Line 97: |
||'''b''' ||[[bExtension]] ||Distributed bug tracker based off the lightweight task manager [[http://stevelosh.com/projects/t/|t]] || ||'''bfiles''' ||BfilesExtension ||Handle large binary files || |
|
Line 94: | Line 100: |
||'''bitbucketize''' ||BitBucketizeExtension ||Create, modify, or delete BitBucket clone from command line|| ||'''bookbinder''' ||[[https://bitbucket.org/halbersa/bookbinder|bookbinder]] ||Make bookmarks behave like a feature branch (as opposed to a label) || |
|
Line 95: | Line 103: |
||'''branchhead''' ||BranchHeadExtension ||Show head(s) of the branch the working directory or given revision is on || ||'''buglink''' ||BugLinkExtension ||Allow to link changesets and Issue IDs || ||'''bugtracker''' ||BugtrackerExtension ||A tiny distributed bugtracking extension for Mercurial || ||'''bundleclone''' ||BundleCloneExtension ||Clone using pre-generated bundles || ||'''casefold''' ||CaseFoldExtension ||Successful unjams case-folding conflicts || ||'''caseguard''' ||CaseGuardExtension ||Prevents users from adding files to a repository if that could cause a CaseFolding collision || |
|
Line 96: | Line 110: |
||'''cedit''' ||CeditExtension ||Command line editor for configuration files, never manually edit hgrc files again || | |
Line 98: | Line 113: |
||'''checkfiles''' ||CheckFilesExtension ||Commit hook and command to check for and fix tabs and trailing whitespace || ||'''checkmeta''' ||CheckMetaExtension ||Enforces configurable file characteristics like file encoding. || ||'''cifiles''' ||CifilesExtension ||Print the names of all checked-in files || ||'''cloc''' ||ClocExtension ||Count lines of source code || ||'''codesmell''' ||CodesmellExtension ||Ask before committing "smelly" changes || |
|
Line 99: | Line 119: |
||'''commitsigs''' ||CommitsigsExtension ||Embed GnuPG and OpenSSL signatures directly into changesets || ||'''committer''' ||CommitterExtension ||Record the committer when you are not the author of a changeset. || |
|
Line 102: | Line 124: |
||'''contains''' ||ContainsExtension ||Test whether a changset is contained in a branch || | |
Line 103: | Line 126: |
||'''cutehg''' ||CuteHgExtension ||A growing set of easy to install and use dialogs for mercurial commands. || | ||'''cutehg''' ||CuteHgExtension ||A growing set of easy to install and use dialogs for mercurial commands || |
Line 107: | Line 130: |
||'''diff-in-diffs''' ||DiffInDiffsExtension || Adds a new command to create the diff of two diffs || | |
Line 108: | Line 132: |
||'''diffstat''' ||DiffstatExtension ||Shortcut commands for displaying diffstat || | |
Line 110: | Line 133: |
||'''dynapath''' ||[[https://bitbucket.org/Unity-Technologies/dynapath/src/tip/dynapath.py|dynapath]] ||Dynamically rewrite paths to use local mirrors based on current local IP. || ||'''dynamic_username''' ||DynamicUsernameExtension ||Set your username per directory tree. || |
|
Line 112: | Line 137: |
||'''editcommitmsgs''' ||EditcommitmsgsExtension ||Change commit messages for all applied mq patches in one go || ||'''exportfiles''' ||[[http://bitbucket.org/albert_brand/hgexportfiles/wiki|hgexportfiles]] ||Export all files changed in a revision or revision range to a directory. || ||'''exclude''' ||ExcludeExtension ||Exclude some modified files by default (e.g., config files that are always modified) || ||'''excludechangesets''' ||ExcludeChangesetsExtension ||Exclude "bad" changesets from being re-added to a central repository || |
|
Line 113: | Line 142: |
||'''filereview''' ||FileReviewExtension ||Perform code review for any project using mercurial || | |
Line 114: | Line 144: |
||'''fixrenames''' ||FixrenamesExtension ||Replay old history to add rename information || | |
Line 117: | Line 148: |
||'''flow''' ||FlowExtension ||Support for the generalized Driessen's model || | |
Line 118: | Line 150: |
||'''graphviz''' ||GraphvizExtension ||Generate DOT language source to visualize changeset tree || | ||'''graphviz''' ||JapaneseGraphvizExtension ||チェンジセットツリーを描くために DOT 言語のソースを生成 || |
Line 120: | Line 152: |
||'''grepfile''' ||GrepfileExtension ||Search files for a regular expression || ||'''guestrepo''' ||GuestrepoExtension ||Handle nested repositories || ||'''hgban''' ||BanChangesetsExtension ||Ban specific changesets from being reintroduced to a repository after being stripped / removed. || |
|
Line 121: | Line 156: |
||'''hg-github''' ||HgGithubExtension ||Allow mirroring Mercurial repositories in Bitbucket to Github || ||'''hg-kerberos''' ||[[http://bitbucket.org/hstuart/hg-kerberos|hg-kerberos]] ||Kerberos authentication extension by Henrik Stuart || ||'''hg-remotebranches''' ||[[https://bitbucket.org/durin42/hg-remotebranches|hg-remotebranches]] ||Keeps track of remote branch heads for each entry in [paths] and exposes them as tags. || ||'''hgbb''' ||BitbucketExtension ||Several helpers for working with bitbucket.org repositories || ||'''hgexternals''' ||HgExternals ||Pull external repositories into a Mercurial repository || ||'''hgext.markdown''' ||MarkdownExtension ||Markdown Extension for hgweb || ||'''hgflowdock''' ||FlowdockExtension ||Send notifications to flowdock.com || ||'''hglist''' ||[[http://alastairs-place.net/projects/hglist|hglist]] ||An `ls` command for Mercurial || ||'''hglock-le''' ||[[HgLockLEExtension]] ||Allow users to inform each other in case of parallel file modification in one local repository || ||'''hgmod''' ||[[HgModExtension]] ||Yet another way working with subrepos || ||'''hgnested''' ||HgNestedExtension ||Manage nested repositories || ||'''hgopenurl''' ||[[HgOpenURLExtension]] ||Quickly show repository URLs in the browser || ||'''hgreview''' ||HgReviewExtension ||Upload / refresh and fetch patches from rietveld codereview instances || ||'''hgsftp''' ||[[http://os.ghalkes.nl/hgsftp.html|hgsftp]] ||Use Mercurial over SFTP || ||'''hgsite''' ||HgSiteExtension ||Serve a web site straight out of a Mercurial repository || ||'''hgssoauthentication''' ||[[https://bitbucket.org/domruf/hgssoauthentication|hgssoauthentication]] ||Allows you to use single sign-on authenticate with web servers that use NTLM or kerberos authentication. || ||'''hgsql''' ||[[hgsqlExtension]] ||Allow server multi-mastering by using a MySQL backend. || |
|
Line 122: | Line 174: |
||'''hgview''' ||[[http://www.logilab.org/project/hgview|hgview]] ||Tool for visually navigating a repository history and comparing multiple revisions || ||'''hg-textauth''' ||[[https://bitbucket.org/hstuart/hg-textauth|hg-textauth]] ||Plaintext file authentication || |
|
Line 123: | Line 177: |
||'''histedit''' ||HisteditExtension ||Edit, fold, drop changesets in the style of {{{git rebase --interactive}}} || | ||'''hgwebcachingproxy''' ||[[https://bitbucket.org/Unity-Technologies/hgwebcachingproxy/src/tip/hgwebcachingproxy.py|hgwebcachingproxy]] ||Caching hgweb proxy, caches and serves pull requests locally, distributes load and gives good bandwidth utilization. || ||'''hgxmpp''' ||HgJabberExtension ||Mercurial Jabber Notification Hook (pre/post hooks for Jabber/Mercurial) || |
Line 125: | Line 180: |
||'''hotfiles''' ||HotFilesExtension ||Designates the files the most susceptible to contain issues || ||'''importfs''' ||ImportfsExtension ||Imports a set of files from a given file-system into a Mercurial repository as a changeset || |
|
Line 126: | Line 183: |
||'''infocalypse''' ||[[Infocalypse]] ||Share code efficiently, decentrally, anonymous and encrypted over Freenet || | |
Line 127: | Line 185: |
||'''keyring''' ||KeyringExtension ||Securely save HTTP passwords in os-specific keyring (Gnome Keyring, KWallet, OSXKeyChain, encrypted file) || ||'''killbom''' ||KillBomExtension ||Remove BOM (byte-order mark) character from files with specified encodings prior to committing || ||'''lighttags''' ||LightTagsExtension ||Make local tags behave like lightweight tags (shared over clone and pull, not version controlled) || |
|
Line 128: | Line 189: |
||'''lock''' ||LockExtension ||Take locks on resources || | |
Line 129: | Line 191: |
||'''message''' ||MessageExtension||Preset the message used for commit || | |
Line 131: | Line 192: |
||'''mergediff''' ||MergediffExtension ||Show only the changes introduced by a merge || ||'''mergeutil''' ||MergeUtilExtension ||Useful utilities for merging branches || ||'''moinport''' ||MoinportExtension ||Fetch changes from MoinMoin Wiki || ||'''mqcollab''' ||MqCollabExtension ||Manage patches in several parallel queues when working with others || ||'''multirepo''' ||MultirepoExtension ||Allow commands to affect multiple repositories simultaneously || ||'''mutable-branches''' ||MutableBranches ||Rename named branches || |
|
Line 132: | Line 199: |
||'''onsub''' ||OnsubExtension ||Recursively execute a command in each subrepository || ||'''nopush''' ||NoPushExtension ||Prohibits pushes from predefined local repository directories || ||'''pack''' ||[[https://sites.google.com/site/alessandronegrin/pack-mercurial-extension|mercurial-pack-extension]] ||Pack all files involved in the give revision (if your customer does not know what a diff file is) || ||'''path_pattern''' ||PathPatternExtension || Define [paths] globally in your .hgrc, and have them known all your repositories. || ||'''paste''' ||PasteExtension ||Paste changes to pastebin || ||'''pastebin''' ||PastebinExtension ||Paste changes to public and private pastebins || ||'''patience''' ||PatienceExtension ||Generate diffs using Bram Cohen's patience diff algorithm || |
|
Line 133: | Line 207: |
||'''perfarce''' ||PerfarceExtension ||Allow Hg to pull from and push to a Perforce depot || ||'''projrc''' ||ProjrcExtension ||Parse project specific config from .hg/projrc || |
|
Line 134: | Line 210: |
||'''publishall''' ||PublishAllExtension ||Publish to all your set repositories (ie: paths) || ||'''punchcard''' ||PunchcardExtension ||Generate a "punch card" graph of your commit habits || ||'''pushlog''' ||MozillaPushlogExtension ||Tracks who pushed what to a repository || ||'''quiet-hg-branch''' ||[[https://bitbucket.org/mg/quiet-hg-branch|quiet-hg-branch]] ||Suppress the "did you want a bookmark?" hint for `hg branch` || ||'''release''' ||ReleaseExtension ||Automatize tasks to deal with release management (tag creation, archiving, ...) || |
|
Line 140: | Line 221: |
||'''rebaseif''' ||RebaseIfExtension ||Command that rebases only if there are no conflicts, otherwise does a merge || ||'''remotefilelog''' ||RemotefilelogExtension ||Allows clones that leave the majority of file history on the server. || ||'''remotenames''' ||[[https://bitbucket.org/seanfarley/hgremotenames|remotenames]] ||Track remote bookmarks and branches || |
|
Line 141: | Line 225: |
||'''schemes''' ||SchemesExtension ||Add shortcuts to urls as url schemes || | ||'''reviewassiatant''' ||[[http://www.devart.com/review-assistant/|CodeReviewExtension]] ||Code review tool helps you to create review requests and respond to them without leaving Visual Studio || ||'''rsync''' ||RemoteSyncExtension ||Keep your working directory in sync with remote files, that exist outside of the repository || ||'''rupdate''' ||RemoteUpdateExtension ||Update a remote repository to a specified revision if the remote repository is hosted via ssh || |
Line 143: | Line 229: |
||'''sharedrepo''' ||SharedRepoExtension ||Let multiple working directories share the same repository || | ||'''serverlog''' ||ServerlogExtension ||Log server-side events useful for sysadmins to diagnose what Mercurial is doing || ||'''shared_mq''' ||SharedMQExtension ||Allow shared repositories have same MQ queues || |
Line 145: | Line 232: |
||'''snap''' ||SnapExtension ||Version (big) file snapshots with storage outside a Mercurial repository || ||'''socks_proxy''' ||[[https://bitbucket.org/bugheisen/socks_proxy/|socks_proxy]] ||SOCKS proxy support || ||'''softrebase''' ||SoftRebaseExtension ||Turn possibly complicated rebase calls into multiple simpler ones || |
|
Line 146: | Line 236: |
||'''spellcheck''' ||SpellcheckExtension ||Interactively correct spelling errors in commit messages; also includes a hook to reject changesets with spelling errors in their commit messages || ||'''subpaths''' ||SubpathsExtension ||Manage subpath remappings using a central file, distributed on clone and pull || ||'''sync''' ||SyncExtension ||Perform pull, update/merge and push in a single click || ||'''talaria''' ||TalariaExtension ||Manage simple hierarchical trees of HTML-documents, such as web-sites, documentation, etc || |
|
Line 147: | Line 241: |
||'''terse-status''' ||[[https://bitbucket.org/sr105/terse-status|terse-status]] ||Makes '`hg status`' show `? foo/` when all files inside `foo` are untracked || ||'''textful''' ||TextfulExtension ||Convert binary file to text or handle character encoding when displaying || ||'''tfs''' ||TfsExtension ||Update Team Foundation Server work items when bug ids are referenced in a changeset || |
|
Line 148: | Line 245: |
||'''timestamp_mod''' ||TimestampModExtension ||Automatically Saves and restores file timestamps for all files in the repository. || ||'''timetracker''' ||[[https://bitbucket.org/edulix/timetracker/wiki/Home|timetracker]] ||Tracks the time spent on a project || ||'''tpager''' ||TpagerExtension ||Mercurial pager with color support on Windows || ||'''untouch''' ||UntouchExtension ||Save or restore modification times of files || ||'''update_version''' ||UpdateVersionExtension ||Automatically update version numbers in code while tagging. || ||'''versions''' ||VersionsExtension ||Display the version information for Mercurial and all installed extensions. || ||'''webuserdir''' ||WebUserDirExtension ||Host users' repositories under /~username/ on hgwebdir || ||'''win32chcp''' ||Win32ChCpExtension ||Switches the Windows console into an encoding actually used by Mercurial on output. || ||'''win32lfn''' ||Win32LongFileNamesExtension ||Allow manipulating files with names longer than 260 characters on Windows. || ||'''wincolor''' ||WinColorExtension ||Support colors on Windows consoles. || ||'''zipdoc''' ||ZipdocExtension ||Version control zipped document formats like docx or odt as uncompressed zip archives to improve delta compression. || |
|
Line 150: | Line 261: |
* ExtensionHitlist | * JapaneseWritingExtensions and PublishingExtensions for information on creating new extensions * ExtensionsDevel for core developer information about extensions |
Line 154: | Line 266: |
[[UsingExtensions|English]], [[FrenchUsingExtensions|Français]], [[GermanUsingExtensions|Deutsch]] |
Mercurial エクステンションを使う
Mercurial の機能を任意のエクステンションで拡張しよう。
1. はじめに
Mercurial は安全で分かりやすいコマンドセットを提供しており、たいていのユーザーがその機能を満足できるように設計されています。 Mercurial のパワーユーザーはエクステンションを活用できるかもしれません。エクステンションを使うと、強力な新機能を Mercurial のコアに統合することができます。
エクステンションが提供する機能は、 Mercurial のポリシー、つまり、安全性、信頼性、使い易さを満たしていないかもしれません。
エクステンションのヘルプは 'hg help extensions' で表示できます。有効にしたエクステンションのヘルプを見るには、 'hg help <extension-name>' を実行してください。
2. エクステンションを有効にする
エクステンション "foo" を有効にするには、 そのエクステンションが Mercurial とともに配布されているか Python のサーチパスに含まれている場合は、 対応するエントリーを hgrc ファイルに追加してください。 例:
[extensions] foo =
エクステンションをフルパスで指定してもかまいません (.py ファイル名か __init__.py のあるフォルダ名):
[extensions] myfeature = ~/.hgext/myfeature.py
Mercurial と共に配布されていないエクステンションを使うには、ダウンロード後どこでも良いのでファイルシステム上に置いてください。この例では、 ~/.hgext/ にダウンロードしています。 注意: Windows 環境でディレクトリを指定する場合は、末尾にバックスラッシュをつけないでください。 (issue4187)
上位スコープの hgrc で有効になっているエクステンションを特に無効化したい場合は、 ! をパスの前に足してください:
[extensions] # /path/to/extension/bar.py にある bar エクステンションを無効化 bar = !/path/to/extension/bar.py # baz エクステンションのパスを指定しなくても同じこと baz = !
たいていのエクステンションは、同じ設定ファイル上の専用セクションで細かい設定ができるようになっています。
3. Mercurial とともに配布されているエクステンション
以下のエクステンションは Mercurial プロジェクトで保守・配布しています。
名称 |
ページ |
説明 |
acl |
コントロールリストをもとにリポジトリの一部へのコミットアクセスを制御 |
|
blackbox |
Log events to .hg/blackbox.log for post-mortem debugging |
|
bugzilla |
チェンジセットで Bugzilla の ID を参照していれば、エントリーを更新 |
|
censor |
Erase file content at a given revision |
|
churn |
Show change statistics for mercurial operations per author |
|
clonebundles |
Advertise pre-generated bundles to seed clones |
|
color |
カラフルな diff, status, qseries コマンド |
|
convert |
他の SCM から Mercurial へリポジトリを変換 |
|
eol |
Translate line-ending characters between working copy and repository |
|
extdiff |
外部プログラムで変更内容を比較 |
|
factotum |
HTTP authentication with factotum |
|
fsmonitor |
Integrates the file-monitoring program watchman with Mercurial to produce faster status results. |
|
gpg |
GPG を使ったチェンジセットの署名とその検証 |
|
hgcia |
CIA に通知 |
|
hgk |
Graphical repository and history browser based on gitk |
|
highlight |
hgweb のファイルリビジョン表示でシンタックスハイライト |
|
histedit |
Edit, fold, drop changesets in the style of git rebase --interactive |
|
keyword |
管理中のファイルで CVS 風のキーワード展開 |
|
largefiles |
Track large binary files (new in 2.0) |
|
mq |
Mercurial パッチキュー - 変更内容を一連のパッチとして管理 |
|
notify |
リポジトリの変更を登録メールアドレスへお知らせ |
|
pager |
Allows you to choose a pager |
|
patchbomb |
チェンジセットを一連のパッチ email として送信 |
|
purge |
Mercurial で管理していないファイル・ディレクトリを消去 |
|
rebase |
リビジョンの分岐点を移動 |
|
relink |
Recreates hardlinks between repository clones |
|
schemes |
Add shortcuts to urls as url schemes |
|
share |
Share repository history between multiple repos |
|
shelve |
Save and restore changes to the working directory |
|
strip |
Strip changesets and their descendants from history |
|
transplant |
Cherry-picking, rebasing and changeset rewriting |
|
win32mbcs |
Windows で shift_jis・big5 ファイル名を使う |
|
zeroconf |
Announce and browse respositories via zeroconf/bonjour |
4. 外部提供のエクステンション
エクステンションの一覧は常に更新されています。最新の情報は UsingExtensions (英語) を参照してください。
These extensions are not distributed together with Mercurial. The Mercurial project provides no guarantees about these and does not maintain or test them.
Note that Mercurial explicitly does not provide a stable API for extension programmers, so it is up to their respective providers/maintainers to adapt them to API changes.
actionlog |
Provides hook intended to help keep track of a remote repository's state that multiple people have access to update |
|
activity |
Create an image representing the activity of the repository |
|
all_dirs |
Execute the same Mercurial command in all repositories down directory tree. |
|
allpaths |
Run commands like push on multiple paths |
|
artemis |
Simple and light-weight issue tracker |
|
attic |
Easily deal with individual patches |
|
automv |
Automatically detect file renames |
|
autopager |
Invoke pager when output is longer than one screen |
|
b |
Distributed bug tracker based off the lightweight task manager t |
|
bfiles |
Handle large binary files |
|
bigfiles |
Support versions of big files with storage outside hg repo |
|
bitbucketize |
Create, modify, or delete BitBucket clone from command line |
|
bookbinder |
Make bookmarks behave like a feature branch (as opposed to a label) |
|
boundmode |
Enables a bound mode (commit command auto-pushes) |
|
branchhead |
Show head(s) of the branch the working directory or given revision is on |
|
buglink |
Allow to link changesets and Issue IDs |
|
bugtracker |
A tiny distributed bugtracking extension for Mercurial |
|
bundleclone |
Clone using pre-generated bundles |
|
casefold |
Successful unjams case-folding conflicts |
|
caseguard |
Prevents users from adding files to a repository if that could cause a CaseFolding collision |
|
casestop |
Stops case-folding conflicts on commit |
|
cedit |
Command line editor for configuration files, never manually edit hgrc files again |
|
changelog |
Auto-generate commit message from changelog entry |
|
chart |
Display activity graphs (see also ActivityExtension and ChurnExtension) |
|
checkfiles |
Commit hook and command to check for and fix tabs and trailing whitespace |
|
checkmeta |
Enforces configurable file characteristics like file encoding. |
|
cifiles |
Print the names of all checked-in files |
|
cloc |
Count lines of source code |
|
codesmell |
Ask before committing "smelly" changes |
|
commits |
Commit modified files as multiple changesets at once |
|
commitsigs |
Embed GnuPG and OpenSSL signatures directly into changesets |
|
committer |
Record the committer when you are not the author of a changeset. |
|
collapse |
Collapse consecutive changesets into one |
|
config |
Manage config files via command line only |
|
config |
Manage hgrc files via dialogs and command line |
|
contains |
Test whether a changset is contained in a branch |
|
crecord |
Select graphically which files/hunk/lines to commit |
|
cutehg |
A growing set of easy to install and use dialogs for mercurial commands |
|
cvscommit |
Push changesets to CVS |
|
defpasswd |
Automatically provide credentials (username/passwords) read from a file. |
|
deps |
Create and manage versioned repository dependencies |
|
diff-in-diffs |
Adds a new command to create the diff of two diffs |
|
digest |
Create and use small digest files for outgoing/bundle |
|
dotlog |
Yet Another DOT grapher |
|
dynapath |
Dynamically rewrite paths to use local mirrors based on current local IP. |
|
dynamic_username |
Set your username per directory tree. |
|
easycommit |
Command-line GUI for committing changes |
|
easymerge |
Command-line GUI for merging |
|
editcommitmsgs |
Change commit messages for all applied mq patches in one go |
|
exportfiles |
Export all files changed in a revision or revision range to a directory. |
|
exclude |
Exclude some modified files by default (e.g., config files that are always modified) |
|
excludechangesets |
Exclude "bad" changesets from being re-added to a central repository |
|
fastimport |
Read a git "fast import" stream and turn it into changesets in a Mercurial repository |
|
filereview |
Perform code review for any project using mercurial |
|
fixcase |
Fix problems where an external tool has changed the case of a filename |
|
fixrenames |
Replay old history to add rename information |
|
fixutf8 |
Fix problems on non-utf8 systems with filenames (Windows never supports utf8 filenames) |
|
foreign |
Interactively register or delete foreign/unknown files |
|
forest |
Manage a bunch of mercurial repos as a meta repository, with snapshot support thread |
|
flow |
Support for the generalized Driessen's model |
|
ftp |
Manage uploaded snapshots on FTP server |
|
graphviz |
チェンジセットツリーを描くために DOT 言語のソースを生成 |
|
group |
Allow to visually regroup a set of changesets |
|
grepfile |
Search files for a regular expression |
|
guestrepo |
Handle nested repositories |
|
hgban |
Ban specific changesets from being reintroduced to a repository after being stripped / removed. |
|
hg-git |
Push to and pull from a Git server |
|
hg-github |
Allow mirroring Mercurial repositories in Bitbucket to Github |
|
hg-kerberos |
Kerberos authentication extension by Henrik Stuart |
|
hg-remotebranches |
Keeps track of remote branch heads for each entry in [paths] and exposes them as tags. |
|
hgbb |
Several helpers for working with bitbucket.org repositories |
|
hgexternals |
Pull external repositories into a Mercurial repository |
|
hgext.markdown |
Markdown Extension for hgweb |
|
hgflowdock |
Send notifications to flowdock.com |
|
hglist |
An ls command for Mercurial |
|
hglock-le |
Allow users to inform each other in case of parallel file modification in one local repository |
|
hgmod |
Yet another way working with subrepos |
|
hgnested |
Manage nested repositories |
|
hgopenurl |
Quickly show repository URLs in the browser |
|
hgreview |
Upload / refresh and fetch patches from rietveld codereview instances |
|
hgsftp |
Use Mercurial over SFTP |
|
hgsite |
Serve a web site straight out of a Mercurial repository |
|
hgssoauthentication |
Allows you to use single sign-on authenticate with web servers that use NTLM or kerberos authentication. |
|
hgsql |
Allow server multi-mastering by using a MySQL backend. |
|
hgsubversion |
Use Mercurial as a Subversion client |
|
hgview |
Tool for visually navigating a repository history and comparing multiple revisions |
|
hg-textauth |
Plaintext file authentication |
|
hgtrac |
Mercurial/Trac Integration Hook (pre/post hooks for Trac/Mercurial) |
|
hgwebcachingproxy |
Caching hgweb proxy, caches and serves pull requests locally, distributes load and gives good bandwidth utilization. |
|
hgxmpp |
Mercurial Jabber Notification Hook (pre/post hooks for Jabber/Mercurial) |
|
histpush |
Record locally which revisions have been pushed |
|
hotfiles |
Designates the files the most susceptible to contain issues |
|
importfs |
Imports a set of files from a given file-system into a Mercurial repository as a changeset |
|
info |
Display basic information about a repository |
|
infocalypse |
Share code efficiently, decentrally, anonymous and encrypted over Freenet |
|
kerberos |
Kerberos Authentication over HTTP support |
|
keyring |
Securely save HTTP passwords in os-specific keyring (Gnome Keyring, KWallet, OSXKeyChain, encrypted file) |
|
killbom |
Remove BOM (byte-order mark) character from files with specified encodings prior to committing |
|
lighttags |
Make local tags behave like lightweight tags (shared over clone and pull, not version controlled) |
|
localbranch |
Create clones inside your working directory |
|
lock |
Take locks on resources |
|
makewritable |
Interactively removes read-only flags from files |
|
mbox |
Import patches from unix mailboxes in MQ |
|
mergediff |
Show only the changes introduced by a merge |
|
mergeutil |
Useful utilities for merging branches |
|
moinport |
Fetch changes from MoinMoin Wiki |
|
mqcollab |
Manage patches in several parallel queues when working with others |
|
multirepo |
Allow commands to affect multiple repositories simultaneously |
|
mutable-branches |
Rename named branches |
|
nearest |
Display the nearest tag from a given changeset |
|
onsub |
Recursively execute a command in each subrepository |
|
nopush |
Prohibits pushes from predefined local repository directories |
|
pack |
Pack all files involved in the give revision (if your customer does not know what a diff file is) |
|
path_pattern |
Define [paths] globally in your .hgrc, and have them known all your repositories. |
|
paste |
Paste changes to pastebin |
|
pastebin |
Paste changes to public and private pastebins |
|
patience |
Generate diffs using Bram Cohen's patience diff algorithm |
|
pbranch |
Collaborative and/or long-term patch development and maintenance |
|
perfarce |
Allow Hg to pull from and push to a Perforce depot |
|
projrc |
Parse project specific config from .hg/projrc |
|
prompt |
Put information about the current repository into a shell prompt |
|
publishall |
Publish to all your set repositories (ie: paths) |
|
punchcard |
Generate a "punch card" graph of your commit habits |
|
pushlog |
Tracks who pushed what to a repository |
|
quiet-hg-branch |
Suppress the "did you want a bookmark?" hint for hg branch |
|
release |
Automatize tasks to deal with release management (tag creation, archiving, ...) |
|
reviewboard |
Post changesets for review to a Review Board server |
|
qct |
Provide access to the Qct commit tool |
|
qtimes |
Save or restore modification times of files affected by patch queue |
|
qup |
Move MQ patches to top of unapplied part of series |
|
rcpath |
Displays Mercurial configuration file paths and names |
|
rdiff |
Allow diff to work against remote repositories |
|
rebaseif |
Command that rebases only if there are no conflicts, otherwise does a merge |
|
remotefilelog |
Allows clones that leave the majority of file history on the server. |
|
remotenames |
Track remote bookmarks and branches |
|
reposettings |
Allow repo specific configuration from central configuration files |
|
reviewassiatant |
Code review tool helps you to create review requests and respond to them without leaving Visual Studio |
|
rsync |
Keep your working directory in sync with remote files, that exist outside of the repository |
|
rupdate |
Update a remote repository to a specified revision if the remote repository is hosted via ssh |
|
send |
Automatic send of bundle containing changesets missing on remote, like darcs send |
|
serverlog |
Log server-side events useful for sysadmins to diagnose what Mercurial is doing |
|
shared_mq |
SharedMQExtension |
Allow shared repositories have same MQ queues |
shelve |
Interactively select changes to set aside |
|
snap |
Version (big) file snapshots with storage outside a Mercurial repository |
|
socks_proxy |
SOCKS proxy support |
|
softrebase |
Turn possibly complicated rebase calls into multiple simpler ones |
|
sonichg |
Record pushlog data, web interfaces to view pushlog & shortlog with slider, advanced search for pushlog, new file log page, full side-by-side diffs, regex filter, commit syntax warning and more! |
|
spellcheck |
Interactively correct spelling errors in commit messages; also includes a hook to reject changesets with spelling errors in their commit messages |
|
subpaths |
Manage subpath remappings using a central file, distributed on clone and pull |
|
sync |
Perform pull, update/merge and push in a single click |
|
talaria |
Manage simple hierarchical trees of HTML-documents, such as web-sites, documentation, etc |
|
tasks |
Manage tasks as collections of contiguous changesets |
|
terse-status |
Makes 'hg status' show ? foo/ when all files inside foo are untracked |
|
textful |
Convert binary file to text or handle character encoding when displaying |
|
tfs |
Update Team Foundation Server work items when bug ids are referenced in a changeset |
|
timestamp |
Saves and restores file timestamps |
|
timestamp_mod |
Automatically Saves and restores file timestamps for all files in the repository. |
|
timetracker |
Tracks the time spent on a project |
|
tpager |
Mercurial pager with color support on Windows |
|
untouch |
Save or restore modification times of files |
|
update_version |
Automatically update version numbers in code while tagging. |
|
versions |
Display the version information for Mercurial and all installed extensions. |
|
webuserdir |
Host users' repositories under /~username/ on hgwebdir |
|
win32chcp |
Switches the Windows console into an encoding actually used by Mercurial on output. |
|
win32lfn |
Allow manipulating files with names longer than 260 characters on Windows. |
|
wincolor |
Support colors on Windows consoles. |
|
zipdoc |
Version control zipped document formats like docx or odt as uncompressed zip archives to improve delta compression. |
5. 参考
JapaneseWritingExtensions and PublishingExtensions for information on creating new extensions
ExtensionsDevel for core developer information about extensions