summaryrefslogtreecommitdiff
path: root/lib/chef/resource/scm/git.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/chef/resource/scm/git.rb')
-rw-r--r--lib/chef/resource/scm/git.rb4
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/chef/resource/scm/git.rb b/lib/chef/resource/scm/git.rb
index f2d5b6980a..788eafbd3b 100644
--- a/lib/chef/resource/scm/git.rb
+++ b/lib/chef/resource/scm/git.rb
@@ -45,10 +45,12 @@ class Chef
default: true
property :remote, String,
+ description: "The remote repository to use when synchronizing an existing clone.",
default: "origin"
property :ssh_wrapper, String,
- desired_state: false
+ desired_state: false,
+ description: "The path to the wrapper script used when running SSH with git. The `GIT_SSH` environment variable is set to this."
property :checkout_branch, String,
description: "Set this to use a local branch to avoid checking SHAs or tags to a detatched head state."