VLT ツールの使用方法 how-to-use-the-vlt-tool
Jackrabbit FileVault ツール (VLT) は、 Apache Foundation Jackrabbit/AEMインスタンスのコンテンツをファイルシステムにマッピングするためのものです。 VLT ツールは、ソース管理システムクライアント (Subversion(SVN) クライアントなど ) と同様の機能を備え、通常のチェックイン、チェックアウト、管理操作に加え、プロジェクトコンテンツを柔軟に表現するための設定オプションを提供します。
VLT ツールはコマンドラインから実行します。このドキュメントでは、ツールの使い方(導入方法、ヘルプの表示方法、すべてのコマンドと使用可能なオプションのリストを含む)について説明します。
概念およびアーキテクチャ concepts-and-architecture
Filevault ツールの概念と構造の完全な概要については、公式の Apache Jackrabbit Filevault ドキュメントの Filevault の概要および Vault FS ページを参照してください。
VLT 使用の手引き getting-started-with-vlt
VLT の使用を開始するには、次の手順を実行する必要があります。
- VLT のインストール、環境変数の更新、およびグローバルで無視された subversion ファイルの更新を行います。
- AEMリポジトリを設定します(まだ設定していない場合)。
- AEMリポジトリを確認します。
- リポジトリと同期します。
- 同期が成功したかどうかをテストします。
VLT ツールのインストール installing-the-vlt-tool
VLT ツールを使用するには、まず VLT ツールをインストールする必要があります。追加のツールなので、デフォルトではインストールされません。また、システムの環境変数を設定する必要があります。
-
FileVault アーカイブファイルを Maven アーティファクトリポジトリからダウンロードします。
note note NOTE VLT ツールのソースは GitHub で入手できます。 1. アーカイブを解凍します。
-
<archive-dir>/vault-cli-<version>/bin
を環境のPATH
に追加して、コマンドファイルvlt
またはvlt.bat
に適宜アクセスできるようにします。次に例を示します。<aem-installation-dir>/crx-quickstart/opt/helpers/vault-cli-3.1.16/bin>
-
コマンドラインシェルを開き、
vlt --help
を実行します。出力が次のヘルプ画面に似ていることを確認します。code language-shell vlt --help ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------- Jackrabbit FileVault [version 3.1.16] Copyright 2013 by Apache Software Foundation. See LICENSE.txt for more information. ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------- Usage: vlt [options] <command> [arg1 [arg2 [arg3] ..]] ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------- Global options: -Xjcrlog <arg> Extended JcrLog options (omit argument for help) -Xdavex <arg> Extended JCR remoting options (omit argument for help) --credentials <arg> The default credentials to use --update-credentials if present the credentials-to-host list is updated in the ~/.vault/auth.xml --config <arg> The JcrFs config to use -v (--verbose) verbose output -q (--quiet) print as little as possible --version print the version information and exit --log-level <level> the log4j log level -h (--help) <command> print this help
インストールした後、グローバルで無視された subversion ファイルを更新する必要があります。 svn 設定を編集して次の情報を追加します。
[miscellany]
### Set global-ignores to a set of whitespace-delimited globs
### which Subversion will ignore in its 'status' output, and
### while importing or adding files and directories.
global-ignores = .vlt
行末文字の設定 configuring-the-end-of-line-character
VLT は、次のルールに従って行末(EOF)を自動的に処理します。
- Windows でチェックアウトされたファイルの行は
CRLF
で終わる。 - Linux/Unix でチェックアウトされたファイルの行は
LF
で終わる。 - リポジトリにコミットされたファイルの行は
LF
で終わる。
VLT と SVN の設定を一致させるには、リポジトリに格納されたファイルの拡張子に対して svn:eol-style
プロパティを native
に設定する必要があります。svn 設定を編集して次の情報を追加します。
[auto-props]
*.css = svn:eol-style=native
*.cnd = svn:eol-style=native
*.java = svn:eol-style=native
*.js = svn:eol-style=native
*.json = svn:eol-style=native
*.xjson = svn:eol-style=native
*.jsp = svn:eol-style=native
*.txt = svn:eol-style=native
*.html = svn:eol-style=native
*.xml = svn:eol-style=native
*.properties = svn:eol-style=native
リポジトリのチェックアウト checking-out-the-repository
ソース管理システムを使用してリポジトリをチェックアウトします。例えば svn では、次のように入力します(URI とパスはお使いのリポジトリのものに置き換えてください)。
svn co https://svn.server.com/repos/myproject
リポジトリとの同期 synchronizing-with-the-repository
filevault をリポジトリと同期する必要があります。 次の手順を実行します。
-
コマンドラインで、
content/jcr_root
に移動します。 -
次のように入力して、リポジトリをチェックアウトします(ポート番号をに置き換えます)。 4502 および管理者パスワード:
code language-shell vlt --credentials admin:admin co --force http://localhost:4502/crx
note note NOTE 資格情報は最初のチェックアウト時に 1 回だけ指定してください。これで、 .vault/auth.xml
内のホームディレクトリに情報が格納されます。
同期が正しくおこなわれたかどうかのテスト testing-whether-the-synchronization-worked
リポジトリのチェックアウトと同期が完了したら、すべてが適切に機能しているかどうかをテストする必要があります。このテストを簡単に行うには、.jsp ファイルを編集して、変更をコミットした後に変更が反映されているかどうかを確認します。
同期をテストするには:
.../jcr_content/libs/foundation/components/text
に移動します。text.jsp
内の項目を編集します。vlt st
を入力して、変更されたファイルを確認します。vlt diff text.jsp
を入力して、変更を確認します。- 変更
vlt ci test.jsp
をコミットします。 - テキストコンポーネントを含むページを再読み込みして、変更が反映されているかどうかを確認します。
VLT ツールに関するヘルプの取得 getting-help-with-the-vlt-tool
VLT ツールをインストールした後、コマンドラインからヘルプファイルにアクセスできます。
vlt --help
-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------
Jackrabbit FileVault [version 3.1.16] Copyright 2013 by Apache Software Foundation. See LICENSE.txt for more information.
-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------
Usage:
vlt [options] <command> [arg1 [arg2 [arg3] ..]]
-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------
Global options:
-Xjcrlog <arg> Extended JcrLog options (omit argument for help)
-Xdavex <arg> Extended JCR remoting options (omit argument for help)
--credentials <arg> The default credentials to use
--update-credentials if present the credentials-to-host list is updated in the ~/.vault/auth.xml
--config <arg> The JcrFs config to use
-v (--verbose) verbose output
-q (--quiet) print as little as possible
--version print the version information and exit
--log-level <level> the log4j log level
-h (--help) <command> print this help
Commands:
export Export the Vault filesystem
import Import a Vault filesystem
checkout (co) Checkout a Vault file system
status (st) Print the status of working copy files and directories.
update (up) Bring changes from the repository into the working copy.
info Displays information about a local file.
commit (ci) Send changes from your working copy to the repository.
revert (rev) Restore pristine working copy file (undo most local edits).
resolved (res) Remove 'conflicted' state on working copy files or directories.
propget (pg) Print the value of a property on files or directories.
proplist (pl) Print the properties on files or directories.
propset (ps) Set the value of a property on files or directories.
add Put files and directories under version control.
delete (del,rm) Remove files and directories from version control.
diff (di) Display the differences between two paths.
rcp Remote copy of repository content.
sync Control vault sync service
console Run an interactive console
-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------
特定のコマンドに関するヘルプを表示するには、ヘルプコマンドを入力し、その後にコマンドの名前を入力します。 次は例です。
vlt --help export
Usage:
export -v|-t <arg>|-p <uri> <jcr-path> <local-path>
Description:
Export the Vault filesystem mounted at <uri> to the local filesystem at <local-path>. An optional <jcr-path> can be specified in order to export just a sub tree.
Example:
vlt export http://localhost:4502/crx /apps/geometrixx myproject
Options:
-v (--verbose) verbose output
-t (--type) <arg> specifies the export type. either 'platform' or 'jar'.
-p (--prune-missing) specifies if missing local files should be deleted.
<uri> mountpoint uri
<jcr-path> the jcr path
<local-path> the local path
VLT で実行される一般的なタスク common-tasks-performed-in-vlt
VLT で実行される一般的なタスクの一部を次に示します。各コマンドについて詳しくは、個々のコマンドを参照してください。
サブツリーのチェックアウト checking-out-a-subtree
リポジトリのサブツリー(例:/apps/geometrixx
)のチェックアウトのみを行う場合は、次のように入力します。
vlt co http://localhost:4502/crx/-/jcr:root/apps/geometrixx geo
これにより、エクスポート用の新しいルート geo
が META-INF
と jcr_root
ディレクトリで作成され、/apps/geometrixx
の下のすべてのファイルが geo/jcr_root
に配置されます。
フィルターが適用されたチェックアウトの実行 performing-a-filtered-checkout
既存のワークスペースフィルターがあり、チェックアウトにそのフィルターを使用する場合は、最初に META-INF/vault
ディレクトリを作成してそこにフィルターを配置するか、またはコマンドラインで次のようにフィルターを指定します。
$ vlt co --filter filter.xml http://localhost:4502/crx/-/jcr:root geo
フィルターの例は次のとおりです。
<?xml version="1.0" encoding="UTF-8"?>
<workspaceFilter version="1.0">
<filter root="/etc/designs/geometrixx" />
<filter root="/apps/geometrixx"/>
</workspaceFilter>
.vlt コントロールの代わりとしてのインポート/エクスポートの使用 using-import-export-instead-of-vlt-control
コントロールファイルを使用せずに、JCR リポジトリとローカルファイルシステムとの間でコンテンツのインポートとエクスポートを行うことができます。
.vlt
コントロールを使用せずにコンテンツのインポートとエクスポートを行うには:
-
最初にリポジトリをセットアップします。
code language-shell $ cd /projects $ svn mkdir https://svn.server.com/repos/myproject $ svn co https://svn.server.com/repos/myproject $ vlt export -v http://localhost:4502/crx /apps/geometrixx geometrixx $ cd geometrixx/ $ svn add META-INF/ jcr_root/ $ svn ci
-
リモートコピーを変更して JCR を更新します。
code language-shell $ cd /projects/geometrixx $ vlt -v import http://localhost:4502/crx . /
-
リモートコピーを変更してファイルサーバーを更新します。
code language-shell $ cd /projects/geometrixx $ vlt export -v http://localhost:4502/crx /apps/geometrixx . $ svn st M META-INF/vault/properties.xml M jcr_root/apps/geometrixx/components/contentpage/.content.xml $ svn ci
VLT の使用 using-vlt
VLT でコマンドを実行するには、コマンドラインで次のように入力します。
vlt [options] <command> [arg1 [arg2 [arg3] ..]]
以降の節で、オプションとコマンドについて詳しく説明します。
VLT グローバルオプション vlt-global-options
すべてのコマンドで使用できる VLT のオプションのリストを次に示します。使用できるその他のオプションについては、個々のコマンドを参照してください。
-Xjcrlog <arg>
-Xdavex <arg>
--credentials <arg>
--config <arg>
-v (--verbose)
-q (--quiet)
--version
--log-level <level>
-h (--help) <command>
VLT コマンド vlt-commands
次の表は、使用可能なすべての VLT コマンドを示しています。構文、使用可能なオプションおよび例について詳しくは、個々のコマンドを参照してください。
export
import
checkout
co
analyze
status
st
update
up
info
commit
ci
revert
rev
resolved
res
propget
pg
proplist
pl
propset
ps
add
delete
del
か rm
のどちらかにする必要があります。diff
di
console
rcp
sync
エクスポート export
次の場所にマウントされた Vault ファイルシステムを書き出します。 <uri> ローカルファイルシステムの <local-path>. サブツリーのみをエクスポートするには、オプションの <jcr-path> を指定できます。
構文 syntax
export -v|-t <arg>|-p <uri> <jcr-path> <local-path>
オプション options
-v (--verbose)
-t (--type) <arg>
-p (--prune-missing)
<uri>
<jcrPath>
<localPath>
例 examples
vlt export http://localhost:4502/crx /apps/geometrixx myproject
読み込み import
<local-path>
で始まるローカルファイルシステムを vault ファイルシステム(<uri>
)に読み込みます。<jcr-path>
をインポートのルートとして指定できます。--sync
が指定されている場合は、読み込むファイルは自動的に vault 管理下に置かれます。
構文 syntax-1
import -v|-s <uri> <local-path> <jcr-path>
オプション options-1
-v (--verbose)
-s (-- sync)
<uri>
<jcrPath>
<localPath>
例 examples-1
vlt import http://localhost:4502/crx . /
チェックアウト (co) checkout-co
JCR リポジトリからローカルファイルシステムへの最初のチェックアウトを、 <uri> ローカルファイルシステムの <local-path>. また、 <jcrpath> 引数を使用して、リモートツリーのサブディレクトリをチェックアウトします。 META-INF ディレクトリにコピーするワークスペースフィルターを指定できます。
構文 syntax-2
checkout --force|-v|-q|-f <file> <uri> <jcrPath> <localPath>
オプション options-2
--force
-v (--verbose)
-q (--quiet)
-f (--filter) <file>
<uri>
<jcrPath>
<localPath>
例 examples-2
JCR のリモート処理を使用する場合:
vlt --credentials admin:admin co http://localhost:8080/crx/server/crx.default/jcr_root/
デフォルトのワークスペースを使用する場合:
vlt --credentials admin:admin co http://localhost:8080/crx/server/-/jcr_root/
URI が不完全な場合は、展開されます。
vlt --credentials admin:admin co http://localhost:8080/crx
分析 analyze
パッケージを分析します。
構文 syntax-3
analyze -l <format>|-v|-q <localPaths1> [<localPaths2> ...]
オプション options-3
-l (--linkFormat) <format>
-v (--verbose)
-q (--quiet)
<localPaths> [<localPaths> ...]
ステータス status
作業用コピーファイルとディレクトリのステータスを出力します。
--show-update
が指定されている場合は、各ファイルがリモートのバージョンと照合されます。2 番目の文字は、更新操作によって実行されるアクションを指定します。
構文 syntax-4
status -v|-q|-u|-N <file1> [<file2> ...]
オプション options-4
-v (--verbose)
-q (--quiet)
-u (--show-update)
-N (--non-recursive)
<file> [<file> ...]
アップデート update
リポジトリから作業用コピーに変更をコピーします。
構文 syntax-5
update -v|-q|--force|-N <file1> [<file2> ...]
オプション options-5
-v (--verbose)
-q (--quiet)
--force
-N (--non-recursive)
<file> [<file> ...]
情報 info
ローカルファイルに関する情報を表示します。
構文 syntax-6
info -v|-q|-R <file1> [<file2> ...]
オプション options-6
-v (--verbose)
-q (--quiet)
-R (--recursive)
<file> [<file> ...]
コミット commit
作業用コピーからリポジトリに変更を送信します。
構文 syntax-7
commit -v|-q|--force|-N <file1> [<file2> ...]
オプション options-7
-v (--verbose)
-q (--quiet)
--force
-N (--non-recursive)
<file> [<file> ...]
元に戻す revert
作業用コピーファイルを元の状態に復元して、大部分のローカルの編集を元に戻します。
構文 syntax-8
revert -q|-R <file1> [<file2> ...]
オプション options-8
-q (--quiet)
-R (--recursive)
<file> [<file> ...]
Resolved resolved
作業用コピーファイルまたはディレクトリの 競合 状態を削除します。
構文 syntax-9
resolved -q|-R|--force <file1> [<file2> ...]
オプション options-9
-q (--quiet)
-R (--recursive)
--force
<file> [<file> ...]
Propget propget
ファイルまたはディレクトリのプロパティの値を出力します。
構文 syntax-10
propget -q|-R <propname> <file1> [<file2> ...]
オプション options-10
-q (--quiet)
-R (--recursive)
<propname>
<file> [<file> ...]
Proplist proplist
ファイルまたはディレクトリのプロパティを出力します。
構文 syntax-11
proplist -q|-R <file1> [<file2> ...]
オプション options-11
-q (--quiet)
-R (--recursive)
<file> [<file> ...]
Propset propset
ファイルまたはディレクトリのプロパティの値を設定します。
vlt:mime-type
構文 syntax-12
propset -q|-R <propname> <propval> <file1> [<file2> ...]
オプション options-12
-q (--quiet)
-R (--recursive)
<propname>
<propval>
<file> [<file> ...]
追加 add
ファイルとディレクトリをバージョン管理下に置き、リポジトリに追加するようにスケジュールを設定します。 これらは次回のコミット時に追加されます。
構文 syntax-13
add -v|-q|-N|--force <file1> [<file2> ...]
オプション options-13
-v (--verbose)
-q (--quiet)
-N (--non-recursive)
--force
<file> [<file> ...]
削除 delete
ファイルとディレクトリのバージョン管理を削除します。
構文 syntax-14
delete -v|-q|--force <file1> [<file2> ...]
オプション options-14
-v (--verbose)
-q (--quiet)
--force
<file> [<file> ...]
差分 diff
2 つのパスの差分を表示します。
構文 syntax-15
diff -N <file1> [<file2> ...]
オプション options-15
-N (--non-recursive)
<file> [<file> ...]
コンソール console
インタラクティブコンソールを実行します。
構文 syntax-16
console -F <file>
オプション options-16
-F (--console-settings) <file>
Rcp rcp
ノードツリーをリモートリポジトリ間でコピーします。<src>
はコピー元のノードを指し、<dst>
でコピー先のパスを指定します。親ノードが存在するパスである必要があります。rcp は、データをストリーミングすることでノードを処理します。
構文 syntax-17
rcp -q|-r|-b <size>|-t <seconds>|-u|-n|-e <arg1> [<arg2> ...] <src> <dst>
オプション options-17
-q (--quiet)
-r (--recursive)
-b (--batchSize) <size>
-t (--throttle) <seconds>
-u (--update)
-n (--newer)
-e (--exclude) <arg> [<arg> ...]
<src>
<dst>
例 examples-3
vlt rcp http://localhost:4502/crx/-/jcr:root/content https://admin:admin@localhost:4503/crx/-/jcr:root/content_copy
--exclude
オプションの後には、<src>
引数と <dst>
引数の前に、別のオプションを指定する必要があります。次は例です。vlt rcp -e ".*\.txt" -r
同期 sync
vault 同期サービスを制御できるようにします。引数がない場合、このコマンドは現在の作業ディレクトリを同期制御の下に置こうとします。 vlt チェックアウト内で実行される場合、それぞれのフィルターとホストを使用して同期を設定します。 vlt チェックアウト外で実行した場合は、ディレクトリが空の場合にのみ、現在のフォルダーが同期用に登録されます。
構文 syntax-18
sync -v|--force|-u <uri> <command> <localPath>
オプション options-18
-v (--verbose)
--force
-u (--uri) <uri>
<command>
<localPath>
ステータスコード status-codes
VLT で使用するステータスコードは次のとおりです。
- 「空白文字」:変更なし
- 「A」:追加
- 「C」:競合
- 「D」:削除
- 「I」:無視
- 「M」:変更
- 「R」:置換
- 「?」:項目がバージョン管理されていない
- 「!」:項目が見つからない(svn 以外のコマンドによって削除済み)または不完全
- 「~」:別の種類の項目によって妨害されたバージョン管理された項目アイテム
FileVault 同期のセットアップ setting-up-filevault-sync
Vault 同期サービスは、リポジトリのコンテンツをローカルファイルシステムの表現と同期する場合に使用し、その逆も同期します。 これは、リポジトリの変更をリッスンし、ファイルシステムのコンテンツを定期的にスキャンする OSGi サービスをインストールすることで実現されます。 リポジトリのコンテンツをディスクにマッピングするために、Vault と同じシリアル化形式を使用します。
vlt を使用したサービスのインストール installing-the-service-using-vlt
vlt sync install
コマンドを使用すると、Vault 同期サービスのバンドルおよび設定を自動的にインストールできます。
このバンドルは /libs/crx/vault/install
の下にインストールされ、設定ノードは /libs/crx/vault/com.day.jcr.sync.impl.VaultSyncServiceImpl
に作成されます。最初はサービスは有効になっていますが、同期ルートは設定されていません。
次の例では、指定された URI でアクセス可能な CRX インスタンスに同期サービスをインストールします。
$ vlt --credentials admin:admin sync --uri http://localhost:4502/crx install
サービスステータスの表示 displaying-the-service-status
status
コマンドを使用すると、実行中の同期サービスに関する情報を表示できます。
$ vlt sync status --uri http://localhost:4502/crx
Connecting via JCR remoting to http://localhost:4502/crx/server
Listing sync status for http://localhost:4502/crx/server/-/jcr:root
- Sync service is enabled.
- No sync directories configured.
status
コマンドは、このサービスからライブデータを取得するのではなく、/libs/crx/vault/com.day.jcr.sync.impl.VaultSyncServiceImpl
にある設定を読み取ります。同期フォルダーの追加 adding-a-sync-folder
register
コマンドは、同期するフォルダーを設定に追加するために使用します。
$ vlt sync register
Connecting via JCR remoting to http://localhost:4502/crx/server
Added new sync directory: /tmp/workspace/vltsync/jcr_root
register
コマンドは、sync-once
を設定するまで同期をトリガーしません。同期フォルダーの削除 removing-a-sync-folder
unregister
コマンドは、同期するフォルダーを設定から削除するために使用します。
$ vlt sync unregister
Connecting via JCR remoting to http://localhost:4502/crx/server
Removed sync directory: /tmp/workspace/vltsync/jcr_root
同期の設定 configuring-synchronization
サービス設定 service-configuration
サービスの実行後は、次のパラメーターを使用して設定できます。
-
vault.sync.syncroots
:同期のルートを定義する 1 つまたは複数のローカルファイルシステムのパス。 -
vault.sync.fscheckinterval
:ファイルシステムの変更をスキャンする頻度(秒)。デフォルト値は 5 秒です。 -
vault.sync.enabled
:サービスを有効または無効にする一般的なフラグ。
sling:OsgiConfig
ノード(名前:com.day.jcr.sync.impl.VaultSyncServiceImpl
)で設定できます。フォルダー設定を同期 sync-folder-configuration
各同期フォルダーにある次の 3 つのファイルに、設定とステータスが格納されます。
-
.vlt-sync-config.properties
:設定ファイル。 -
.vlt-sync.log
:同期中に実行された操作に関する情報を格納するログファイル。 -
.vlt-sync-filter.xml
:リポジトリのどの部分を同期するかを定義するフィルター。このファイルの形式については、フィルターが適用されたチェックアウトの実行を参照してください。
.vlt-sync-config.properties
ファイルを使用すると、次のプロパティを設定できます。
無効 同期のオンとオフを切り替えます。デフォルトでは、このパラメーターは false に設定されており、同期が行われます。
sync-once 空でない場合は、次にスキャンするとき、指定した方向にフォルダーを同期し、パラメーターがクリアされます。次の 2 つの値をサポートしています。
JCR2FS
:JCR リポジトリ内のコンテンツをすべてエクスポートして、ローカルディスクに書き込みます。FS2JCR
:ディスクから JCR リポジトリにすべてのコンテンツをインポートします。
sync-log ログのファイル名を定義します。デフォルト値は .vlt-sync.log です。
開発のための VLT 同期の使用 using-vlt-sync-for-development
同期フォルダーに基づいて開発環境をセットアップするには、次の手順を実行します。
-
vlt コマンドラインを使用してリポジトリをチェックアウトします。
code language-shell $ vlt --credentials admin:admin co --force http://localhost:4502/crx dev
note note NOTE フィルターを使用して、適切なパスだけをチェックアウトできます。詳しくは、フィルターが適用されたチェックアウトの実行を参照してください。 -
作業用コピーのルートフォルダーに移動します。
code language-shell $ cd dev/jcr_root/
-
同期サービスをリポジトリにインストールします。
code language-xml $ vlt sync install Connecting via JCR remoting to http://localhost:4502/crx/server Preparing to install vault-sync-2.4.24.jar... Updated bundle: vault-sync-2.4.24.jar Created new config at /libs/crx/vault/config/com.day.jcr.sync.impl.VaultSyncServiceImpl
-
同期サービスを初期化します。
code language-shell $ vlt sync Connecting via JCR remoting to http://localhost:4502/crx/server Starting initialization of sync service in existing vlt checkout /Users/colligno/Applications/cq5/vltsync/sandbox/dev/jcr_root for http://localhost:4502/crx/server/-/jcr:root Added new sync directory: /Users/trushton/Applications/aem/vltsync/sandbox/dev/jcr_root The directory /Users/trushton/Applications/aem/vltsync/sandbox/dev/jcr_root is now enabled for syncing. You might perform a 'sync-once' by setting the appropriate flag in the /Users/trushton/Applications/aem/vltsync/sandbox/dev/jcr_root/.vlt-sync-config.properties file.
-
.vlt-sync-config.properties
隠しファイルを編集し、リポジトリのコンテンツを同期するように設定します。code language-xml sync-once=JCR2FS
note note NOTE この手順では、フィルター条件に従ってリポジトリ全体をダウンロードします。 -
ログファイル
.vlt-sync.log
で進行状況を確認します。code language-xml *** 30.04.2017 14:39:10 A file:///Users/trushton/Applications/aem/vltsync/sandbox/dev/jcr_root/apps/geometrixx-outdoors/src/core/src/main/java/info/geometrixx/outdoors/ 30.04.2017 14:39:10 A file:///Users/trushton/Applications/aem/vltsync/sandbox/dev/jcr_root/apps/geometrixx-outdoors/src/core/src/main/java/info/geometrixx/outdoors/core/ 30.04.2017 14:39:10 A file:///Users/trushton/Applications/aem/vltsync/sandbox/dev/jcr_root/apps/geometrixx-outdoors/src/core/src/main/java/info/geometrixx/outdoors/core/product/ 30.04.2017 14:39:10 A file:///Users/trushton/Applications/aem/vltsync/sandbox/dev/jcr_root/apps/geometrixx-outdoors/src/core/src/main/java/info/geometrixx/outdoors/core/product/GeoProduct.java ***
これで、ローカルフォルダーがリポジトリと同期されました。この同期は双方向なので、リポジトリからの変更はローカルの同期フォルダーに適用され、その逆も同様です。