From f0472d306ba8e0701102c362416689f19ae67656 Mon Sep 17 00:00:00 2001 From: zachary Date: Sat, 26 Feb 2022 14:05:05 +0800 Subject: [PATCH] release 1.5.0 - update readme. --- README.md | 19 +------------------ pigit/const.py | 2 +- 2 files changed, 2 insertions(+), 19 deletions(-) diff --git a/README.md b/README.md index d4bf5fb..d4a8fcf 100644 --- a/README.md +++ b/README.md @@ -62,6 +62,7 @@ positional arguments: {cmd,repo} cmd git short command. repo repo options. + open open remote repository in web browser. optional arguments: -h, --help show this help message and exit @@ -121,24 +122,6 @@ It support a simple interactive mode. You can use `pigit` into the interactive m And in the interaction mode, you can use `?` or `h` to see the help message. -### Open remote - -You can use `pigit cmd open` to open your remote website (just support **github**). These are some other parameters this command supported: - -```bash - -i, --issue: - open given issue of the repository. - # pigit open -- -i 20 - # pigit open -- --issue=20 - -c, --commit: - open the current commit in the repo website. - # pigit open -- --commit - -p, --print: - only print the url at the terminal, but don't open it. - : - open the page for this branch on the repo website. -``` - ## Alias Alias is good way to help you use _pigit_ faster . Open your shell profile and append: diff --git a/pigit/const.py b/pigit/const.py index e66fbcb..d024598 100644 --- a/pigit/const.py +++ b/pigit/const.py @@ -3,7 +3,7 @@ import os, sys __project__ = "pigit" -__version__ = "1.5.0-dev.1" +__version__ = "1.5.0" __url__ = "https://github.com/zlj-zz/pigit.git" __uri__ = __url__