# git-c [![Crates.io][crates-badge]][crates-url] [crates-badge]: https://img.shields.io/crates/v/gitc.svg [crates-url]: https://crates.io/crates/gitc Clone git repository with not only git url(e.g: `git@github.com:/.git`), but also http url(e.g: `https://github.com///tree/`). It's helpful to clone a repository of a special branch quickly. ## Usage Supports http url: ```sh gitc https://github.com// # run the command: git clone git@github.com:/.git ``` Even with branch: ```sh gitc https://github.com///tree/ # run the command: git clone git@github.com:/.git -b ``` Also supports ssh url: ```sh gitc https://github.com//.git # run the command: git clone https://github.com//.git gitc git@github.com:/.git # run the command: git clone git@github.com:/.git ``` ## LICENSE MIT