diff options
-rw-r--r-- | src/luarocks/fetch/git_https.lua | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/luarocks/fetch/git_https.lua b/src/luarocks/fetch/git_https.lua new file mode 100644 index 00000000..67f8ad6c --- /dev/null +++ b/src/luarocks/fetch/git_https.lua | |||
@@ -0,0 +1,7 @@ | |||
1 | --- Fetch back-end for retrieving sources from Git repositories | ||
2 | -- that use https:// transport. For example, for fetching a repository | ||
3 | -- that requires the following command line: | ||
4 | -- `git clone https://example.com/foo.git` | ||
5 | -- you can use this in the rockspec: | ||
6 | -- source = { url = "git+https://example.com/foo.git" } | ||
7 | return require "luarocks.fetch.git_http" | ||