From 82abcb94ae559138e526aa1f5f7bc28a9ddcf6ff Mon Sep 17 00:00:00 2001 From: Spencer Russell Date: Thu, 21 Mar 2019 11:56:43 -0400 Subject: [PATCH] clarify `ssh` option I wasn't sure what the `ssh` option did, hopefully this clarifies it a little. --- src/template.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/template.jl b/src/template.jl index 9ed1870..3e5c0a6 100644 --- a/src/template.jl +++ b/src/template.jl @@ -22,7 +22,7 @@ create a template, you can use [`interactive_template`](@ref) instead. * `dir::AbstractString=$(replace(Pkg.devdir(), homedir() => "~"))`: Directory in which the package will go. Relative paths are converted to absolute ones at template creation time. * `julia_version::VersionNumber=$VERSION`: Minimum allowed Julia version. -* `ssh::Bool=false`: Whether or not to use SSH for the remote. +* `ssh::Bool=false`: Whether or not to use SSH for the git remote. If `false` HTTPS will be used. * `manifest::Bool=false`: Whether or not to commit the `Manifest.toml`. * `plugins::Vector{<:Plugin}=Plugin[]`: A list of `Plugin`s that the package will include. """