Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/cnwangjie/yag
YAG is Yet Another Git CLI tool.
https://github.com/cnwangjie/yag
cli git gitlab rust
Last synced: 2 months ago
JSON representation
YAG is Yet Another Git CLI tool.
- Host: GitHub
- URL: https://github.com/cnwangjie/yag
- Owner: cnwangjie
- License: mit
- Created: 2020-08-29T16:22:29.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2023-03-03T20:07:14.000Z (almost 2 years ago)
- Last Synced: 2024-09-14T10:06:37.905Z (3 months ago)
- Topics: cli, git, gitlab, rust
- Language: Rust
- Homepage:
- Size: 143 KB
- Stars: 6
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# yag
YAG is Yet Another Git CLI tool.![Rust](https://github.com/cnwangjie/yag/workflows/Test/badge.svg)
![crate.io](https://img.shields.io/crates/v/yag.svg)
![crate.io](https://img.shields.io/crates/d/yag.svg)## Installation
You can just use following command to install if you have already have `cargo` in your environment.
```bash
cargo install yag
```If you have not installed rust tools already you can try to install cargo with following command.
```bash
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
```*above command is referenced from https://www.rust-lang.org/tools/install
## Example
```bash
# list all pull requests of current repository
yag pr list# get the details of #3 pull request of current repository
yag pr get 3# submit a new pull request from current branch to master
yag pr new
```## Usage
Use `yag help` to see more details.
## License
under the MIT License