{"id":20448503,"url":"https://github.com/shadawck/gitcurl","last_synced_at":"2026-05-04T12:31:55.581Z","repository":{"id":59689570,"uuid":"538563959","full_name":"shadawck/gitcurl","owner":"shadawck","description":"Clone a git repository without the need of git to be installed on your system.","archived":false,"fork":false,"pushed_at":"2022-11-30T19:26:43.000Z","size":76,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-11-07T23:15:03.687Z","etag":null,"topics":["cli","clone","curl","git","rust","utility"],"latest_commit_sha":null,"homepage":"https://crates.io/crates/gitcurl","language":"Rust","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/shadawck.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2022-09-19T15:16:16.000Z","updated_at":"2022-09-25T10:41:07.000Z","dependencies_parsed_at":"2023-01-22T12:45:35.023Z","dependency_job_id":null,"html_url":"https://github.com/shadawck/gitcurl","commit_stats":null,"previous_names":[],"tags_count":4,"template":false,"template_full_name":null,"purl":"pkg:github/shadawck/gitcurl","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/shadawck%2Fgitcurl","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/shadawck%2Fgitcurl/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/shadawck%2Fgitcurl/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/shadawck%2Fgitcurl/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/shadawck","download_url":"https://codeload.github.com/shadawck/gitcurl/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/shadawck%2Fgitcurl/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32607388,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-04T10:08:07.713Z","status":"ssl_error","status_checked_at":"2026-05-04T10:08:02.005Z","response_time":58,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["cli","clone","curl","git","rust","utility"],"created_at":"2024-11-15T10:35:23.521Z","updated_at":"2026-05-04T12:31:55.561Z","avatar_url":"https://github.com/shadawck.png","language":"Rust","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Gitcurl\n\n[![crates.io](https://img.shields.io/crates/v/gitcurl.svg)](https://crates.io/crates/gitcurl) [![Build](https://github.com/shadawck/gitcurl/actions/workflows/build.yaml/badge.svg)](https://github.com/shadawck/gitcurl/actions/workflows/build.yaml)\n\nClone a git repository without the need of git to be installed on your system.\n\n## Installation\n\n### Cargo\n\n```bash\ncargo install gitcurl\n```\n\n### Pre-compiled binaries\n\nFor each release, pre-compiled version are available : \u003chttps://github.com/shadawck/gitcurl/releases/latest/\u003e\n\n| OS             | Arch    |\n| -------------- | ------- |\n| linux          | x86\\_64 |\n| linux          | armv7   |\n| linux          | arm64   |\n| macos          | x86\\_64 |\n| macos          | arm64   |\n| windows (msvc) | x86\\_64 |\n| windows (msvc) | i686    |\n\n## How to use gitcurl\n\nClone a git repository in the current folder:\n\n- On github:\n\n    ```bash\n    gitcurl https://github.com/shadawck/gitcurl\n    # or \n    gitcurl github:shadawck:gitcurl\n    ```\n\n- Or on Gitlab:\n\n    ```bash\n    gitcurl https://gitlab.com/tezos/tezos\n    # or \n    gitcurl gitlab:tezos:tezos\n    ```\n\n- Or on premise Gitlab:\n\n    ```bash\n    gitcurl https://gitlab.kitware.com/utils/rust-gitlab\n    # or \n    gitcurl gitlab.kitware.com:utils:rust-gitlab\n    ```\n\n---\n\nClone a specific branch of a git repository in the current folder.\n\n```bash\ngitcurl https://github.com/shadawck/gitcurl -b main\n```\n\n---\n\nFetch a zip of the repository.\n\n```bash\ngitcurl -z https://github.com/shadawck/gitcurl\n```\n\n---\n\nOutput to a specific path.\n\n```bash\ngitcurl https://github.com/shadawck/gitcurl -z -o /my/clone/path/myzip.zip\ngitcurl https://github.com/shadawck/gitcurl -o /my/clone/path\n```\n\n---\n\n## Options\n\n```bash\n$ gitcurl --help\nClone git repository with curl\n\nUSAGE:\n    gitcurl [OPTIONS] \u003cURL\u003e\n\nARGS:\n    \u003cURL\u003e    Github link or just \u003cuser_name_name\u003e:\u003crepo_name\u003e\n\nOPTIONS:\n    -b, --branch \u003cbranch\u003e    Clone a specific branch of git repositiry\n    -h, --help               Print help information\n    -o, --output \u003cPATH\u003e      Path to save or decompress the zip archive\n    -V, --version            Print version information\n    -z, --only-zip           Only fetch the zipfile of the git repository without decompressing\nshadawck@shadow:/opt/Projet/gitcurl$ \n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fshadawck%2Fgitcurl","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fshadawck%2Fgitcurl","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fshadawck%2Fgitcurl/lists"}