From 750cfecf98bc4d737a6604e850371aadb361efdf Mon Sep 17 00:00:00 2001 From: Nick Townsend Date: Tue, 27 Jan 2015 15:35:46 -0800 Subject: [PATCH] Document :repo_path stage variable --- .../getting-started/configuration/index.markdown | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/documentation/getting-started/configuration/index.markdown b/documentation/getting-started/configuration/index.markdown index d0fe7f2f..8ed394a6 100644 --- a/documentation/getting-started/configuration/index.markdown +++ b/documentation/getting-started/configuration/index.markdown @@ -44,7 +44,7 @@ The following variables are settable: * `:deploy_to` * **default:** `-> { "/var/www/#{fetch(:application)}" }` * The path on the remote server where the application should be deployed. - * If application contains whitespace or such this path might be invalid. See Structure for the exact directorys used. + * If application contains whitespace or such this path might be invalid. See Structure for the exact directories used. * `:scm` * **default:** `:git` @@ -55,7 +55,13 @@ The following variables are settable: * URL to the repository. * Must be a valid URL for the used SCM. +* `:repo_path` + * **default:** `-> { "#{fetch(:deploy_to)}/repo" }` + * The path on the remote server where the repository should be placed. + * This does not normally need to be set + * `:repo_tree` + * **default:** None. The whole repository is normally deployed. * The subtree of the repository to deploy. * Currently only implemented for Git and Hg.