Crates.io | gitc |
lib.rs | gitc |
version | 0.1.4 |
source | src |
created_at | 2024-01-02 12:21:54.586306 |
updated_at | 2024-01-06 06:26:10.044677 |
description | A command line tool to help you clone git repositories with http url or even with branch. |
homepage | |
repository | |
max_upload_size | |
id | 1086199 |
size | 11,807 |
Clone git repository with not only git url(e.g: git@github.com:<group>/<project>.git
), but also http url(e.g: https://github.com/<group>/<project>/tree/<branch>
). It's helpful to clone a repository of a special branch quickly.
Supports http url:
gitc https://github.com/<group>/<project>
# run the command: git clone git@github.com:<group>/<project>.git
Even with branch:
gitc https://github.com/<group>/<project>/tree/<branch>
# run the command: git clone git@github.com:<group>/<project>.git -b <branch>
Also supports ssh url:
gitc https://github.com/<group>/<project>.git
# run the command: git clone https://github.com/<group>/<project>.git
gitc git@github.com:<group>/<project>.git
# run the command: git clone git@github.com:<group>/<project>.git
MIT