プログラマーに、作業コピーでファイルをロックするときに常にメッセージを入れてほしい(つまりsvn lock tree.jpg -m "reason for locking"
)プレロックフックがメッセージが配置されているかどうか、そしてそれが何であるかを知る方法はありますか?
質問する
745 次
1 に答える
1
hooks/pre-lock.tmpl
リポジトリを調べてください。私の場合、次の情報が含まれており、ロックコメントが4番目のパラメーターであることを示しています。
# PRE-LOCK HOOK
#
# The pre-lock hook is invoked before an exclusive lock is
# created. Subversion runs this hook by invoking a program
# (script, executable, binary, etc.) named 'pre-lock' (for which
# this file is a template), with the following ordered arguments:
#
# [1] REPOS-PATH (the path to this repository)
# [2] PATH (the path in the repository about to be locked)
# [3] USER (the user creating the lock)
# [4] COMMENT (the comment of the lock)
# [5] STEAL-LOCK (1 if the user is trying to steal the lock, else 0)
...
于 2012-05-03T08:04:03.737 に答える