Clone a git repository without the need of git to be installed on your system.
bash
cargo install gitcurl
For each release, pre-compiled version are available : https://github.com/shadawck/gitcurl/releases/latest/
| OS | Arch | | -------------- | ------- | | linux | x86_64 | | linux | armv7 | | linux | arm64 | | macos | x86_64 | | macos | arm64 | | windows (msvc) | x86_64 | | windows (msvc) | i686 |
Clone a git repository in the current folder:
On github:
```bash gitcurl https://github.com/shadawck/gitcurl
gitcurl github:shadawck:gitcurl ```
Or on Gitlab:
```bash gitcurl https://gitlab.com/tezos/tezos
gitcurl gitlab:tezos:tezos ```
Or on premise Gitlab:
```bash gitcurl https://gitlab.kitware.com/utils/rust-gitlab
gitcurl gitlab.kitware.com:utils:rust-gitlab ```
Clone a specific branch of a git repository in the current folder.
bash
gitcurl https://github.com/shadawck/gitcurl -b main
Fetch a zip of the repository.
bash
gitcurl -z https://github.com/shadawck/gitcurl
Output to a specific path.
bash
gitcurl https://github.com/shadawck/gitcurl -z -o /my/clone/path/myzip.zip
gitcurl https://github.com/shadawck/gitcurl -o /my/clone/path
```bash $ gitcurl --help Clone git repository with curl
USAGE:
gitcurl [OPTIONS]
ARGS:
OPTIONS:
-b, --branch