hosted-git-info

Provides metadata and conversions from repository urls for [GitHub], [Bitbucket] and [GitLab].

This is a [Rust] port of the original [hosted-git-info] project on [npm].

This will let you identify and transform various git hosts URLs between protocols. It also can tell you what the URL is for the raw path for particular file for direct access without git.

Usage

```rust use hostedgitinfo::HostedGitInfo;

fn main() { let url = "https://github.com/foo/bar.git#branch"; let info = HostedGitInfo::fromurl(url).unwrap(); asserteq!(info.provider, Provider::GitHub); asserteq!(info.user, Some("foo")); asserteq!(info.project, "bar"); assert_eq!(info.committish, Some("branch")); } ```

Related

License

This project is licensed under the ISC license (LICENSE or http://opensource.org/licenses/ISC).