Gitcurl

Docs crates.io

Clone a git repository without the need of git to be installed on your system.

Installation

Cargo

bash cargo install gitcurl

Clone a git repository in the current folder.

```bash gitcurl https://github.com/shadawck/gitcurl

or

gitcurl shadawck:gitcurl ```

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 -z https://github.com/shadawck/gitcurl -o /my/clone/path/myzip.zip

bash gitcurl https://github.com/shadawck/gitcurl -o /my/clone/path

Options

```bash $ gitcurl --help Clone git repository with curl

USAGE: gitcurl [OPTIONS]

ARGS: Github link or just :

OPTIONS: -b, --branch Clone a specific branch of git repositiry -h, --help Print help information -o, --output Path to save or decompress the zip archive -V, --version Print version information -z, --only-zip Only fetch the zipfile of the git repository without decompressing shadawck@shadow:/opt/Projet/gitcurl$ ```