Merge branch 'master' of github.com:profclems/glab

This commit is contained in:
Clement Sam 2020-07-28 03:32:40 +00:00
commit c09cd316d1
3 changed files with 29 additions and 0 deletions

1
_config.yml Normal file
View File

@ -0,0 +1 @@
theme: jekyll-theme-leap-day

5
docs/_config.yml Normal file
View File

@ -0,0 +1,5 @@
title: GLab
description: An custom Gitlab Cli tool written in Go (golang)
show_downloads: true
google_analytics:
theme: jekyll-theme-leap-day

23
docs/index.md Normal file
View File

@ -0,0 +1,23 @@
# GLab
GLab open source custom Gitlab Cli tool written in Go (golang) to help work seamlessly with Gitlab from the command line.
![image](https://user-images.githubusercontent.com/41906128/88602028-613cc880-d061-11ea-84c1-71b6e1e02611.png)
## Usage
```bash
glab <command> <subcommand> [flags]
```
### Core Commands
- `glab mr [list, create, close, reopen, delete]`
- `glab issue [list, create, close, reopen, delete]`
- `glab config`
- `glab help`
### Examples
```bash
$ glab issue create --title="This is an issue title" --description="This is a really long description"
$ glab issue list --closed
```