Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/packsaddle/rust-github_httpsable_cli
Execute git command with https-url (for GitHub).
https://github.com/packsaddle/rust-github_httpsable_cli
Last synced: about 1 month ago
JSON representation
Execute git command with https-url (for GitHub).
- Host: GitHub
- URL: https://github.com/packsaddle/rust-github_httpsable_cli
- Owner: packsaddle
- License: apache-2.0
- Created: 2017-11-03T06:06:13.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2017-11-04T16:14:09.000Z (about 7 years ago)
- Last Synced: 2024-10-12T07:41:17.409Z (3 months ago)
- Language: Shell
- Homepage:
- Size: 42 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
- Changelog: changelog.md
- License: license-apache
Awesome Lists containing this project
README
# github_httpsable_cli
[![crates version][crates-image]][crates-url] [![Travis-CI Status][travis-image]][travis-url] [![Appveyor Status][appveyor-image]][appveyor-url] ![license][license-image]
> Execute git command with https-url (for GitHub).
See [git_httpsable](https://github.com/packsaddle/rust-git_httpsable) for the programmatic API.
See [git_httpsable_cli](https://github.com/packsaddle/rust-git_httpsable_cli) for generic cli.## Example
```bash
$ GITHUB_ACCESS_TOKEN=__your_access_token__ \
github-httpsable clone https://example.com/git/repo ./target_dir
# => git clone https://__your_access_token__:[email protected]/git/repo ./target_dir
``````bash
$ GIT_HTTPSABLE_USERNAME=__your_access_token__ \
github-httpsable push https://example.com/git/repo your_branch
# => git push https://__your_access_token__:[email protected]/git/repo your_branch
```NOTE: Both `GITHUB_ACCESS_TOKEN` and `GIT_HTTPSABLE_USERNAME` are ok.
## Install
Download from [Latest release](https://github.com/packsaddle/rust-github_httpsable_cli/releases/latest) for your own environment.
or
```
$ cargo install github_httpsable_cli
```## changelog
[changelog](./changelog.md)
## License
MIT/Apache-2.0 © [Sanemat](http://sane.jp)
[travis-url]: https://travis-ci.org/packsaddle/rust-github_httpsable_cli
[travis-image]: https://img.shields.io/travis/packsaddle/rust-github_httpsable_cli/master.svg?style=flat-square&label=travis
[appveyor-url]: https://ci.appveyor.com/project/sanemat/rust-github-httpsable-cli/branch/master
[appveyor-image]: https://img.shields.io/appveyor/ci/sanemat/rust-github-httpsable-cli/master.svg?style=flat-square&label=appveyor
[crates-url]: https://crates.io/crates/github_httpsable_cli
[crates-image]: https://img.shields.io/crates/v/github_httpsable_cli.svg?style=flat-square
[license-image]: https://img.shields.io/crates/l/github_httpsable_cli.svg?style=flat-square