summaryrefslogtreecommitdiffstats
path: root/src/fedpkg.bash
diff options
context:
space:
mode:
Diffstat (limited to 'src/fedpkg.bash')
-rw-r--r--src/fedpkg.bash15
1 files changed, 12 insertions, 3 deletions
diff --git a/src/fedpkg.bash b/src/fedpkg.bash
index f1bf36c..c4e3a81 100644
--- a/src/fedpkg.bash
+++ b/src/fedpkg.bash
@@ -36,8 +36,8 @@ _fedpkg()
local options="--help -v -q"
local options_value="--user --path"
local commands="build chain-build ci clean clog clone co commit compile diff gimmespec giturl help \
- import install lint local mockbuild new new-sources patch prep push scratch-build sources srpm \
- switch-branch tag-request unused-patches update upload verrel"
+ import install lint local mockbuild new new-sources patch prep pull push scratch-build sources srpm \
+ switch-branch tag tag-request unused-patches update upload verrel"
# parse main options and get command
@@ -113,7 +113,7 @@ _fedpkg()
after="package"
;;
commit|ci)
- options="--push"
+ options="--push --clog --tag"
options_string="--message"
options_file="--file"
after="file"
@@ -133,6 +133,9 @@ _fedpkg()
options_branch="--branch"
after="srpm"
;;
+ lint)
+ options="--info"
+ ;;
local)
options="--md5"
options_arch="--arch"
@@ -153,6 +156,12 @@ _fedpkg()
sources)
options_dir="--outdir"
;;
+ tag)
+ options="--clog --force --list --delete"
+ options_string="--message -m"
+ options_file="--file -F"
+ after_more=true
+ ;;
srpm)
options="--md5"
;;