diff options
author | Michael Muré <batolettre@gmail.com> | 2019-11-03 16:46:51 +0100 |
---|---|---|
committer | amine <hilalyamine@gmail.com> | 2019-11-03 17:23:05 +0100 |
commit | 57e23c8ada0a9d921a6b68187a76eb5c8b8a407d (patch) | |
tree | 05ab55090bf196b940a4f6b0e4aaec9975b997bc /misc | |
parent | 614bc5a2c53409a8e9c85ab31a104428069aa7b3 (diff) | |
download | git-bug-57e23c8ada0a9d921a6b68187a76eb5c8b8a407d.tar.gz |
bridge: improvement on the import resume feature
Diffstat (limited to 'misc')
-rw-r--r-- | misc/powershell_completion/git-bug | 4 | ||||
-rw-r--r-- | misc/zsh_completion/git-bug | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/misc/powershell_completion/git-bug b/misc/powershell_completion/git-bug index 3a72cb26..34037531 100644 --- a/misc/powershell_completion/git-bug +++ b/misc/powershell_completion/git-bug @@ -73,8 +73,8 @@ Register-ArgumentCompleter -Native -CommandName 'git-bug' -ScriptBlock { 'git-bug;bridge;pull' { [CompletionResult]::new('-n', 'n', [CompletionResultType]::ParameterName, 'force importing all bugs') [CompletionResult]::new('--no-resume', 'no-resume', [CompletionResultType]::ParameterName, 'force importing all bugs') - [CompletionResult]::new('-s', 's', [CompletionResultType]::ParameterName, 'import only bugs updated after the given date (must be a unix timestamp)') - [CompletionResult]::new('--since', 'since', [CompletionResultType]::ParameterName, 'import only bugs updated after the given date (must be a unix timestamp)') + [CompletionResult]::new('-s', 's', [CompletionResultType]::ParameterName, 'import only bugs updated after the given date (ex: "200h" or "june 2 2019")') + [CompletionResult]::new('--since', 'since', [CompletionResultType]::ParameterName, 'import only bugs updated after the given date (ex: "200h" or "june 2 2019")') break } 'git-bug;bridge;push' { diff --git a/misc/zsh_completion/git-bug b/misc/zsh_completion/git-bug index 7bbd9001..9951bab9 100644 --- a/misc/zsh_completion/git-bug +++ b/misc/zsh_completion/git-bug @@ -153,7 +153,7 @@ function _git-bug_bridge_configure { function _git-bug_bridge_pull { _arguments \ '(-n --no-resume)'{-n,--no-resume}'[force importing all bugs]' \ - '(-s --since)'{-s,--since}'[import only bugs updated after the given date (must be a unix timestamp)]:' + '(-s --since)'{-s,--since}'[import only bugs updated after the given date (ex: "200h" or "june 2 2019")]:' } function _git-bug_bridge_push { |