2018-09-18 14:17:39 +03:00
|
|
|
## git-bug select
|
|
|
|
|
2019-02-24 16:46:08 +03:00
|
|
|
Select a bug for implicit use in future commands.
|
2018-09-18 14:17:39 +03:00
|
|
|
|
|
|
|
### Synopsis
|
|
|
|
|
2019-02-24 16:46:08 +03:00
|
|
|
Select a bug for implicit use in future commands.
|
2018-09-18 14:17:39 +03:00
|
|
|
|
2020-07-28 21:24:24 +03:00
|
|
|
This command allows you to omit any bug ID argument, for example:
|
2019-03-27 23:46:57 +03:00
|
|
|
git bug show
|
|
|
|
instead of
|
|
|
|
git bug show 2f153ca
|
|
|
|
|
|
|
|
The complementary command is "git bug deselect" performing the opposite operation.
|
|
|
|
|
|
|
|
|
2018-09-18 14:17:39 +03:00
|
|
|
```
|
2020-07-28 21:24:24 +03:00
|
|
|
git-bug select ID [flags]
|
2018-09-18 14:17:39 +03:00
|
|
|
```
|
|
|
|
|
|
|
|
### Examples
|
|
|
|
|
|
|
|
```
|
|
|
|
git bug select 2f15
|
|
|
|
git bug comment
|
|
|
|
git bug status
|
|
|
|
|
|
|
|
```
|
|
|
|
|
|
|
|
### Options
|
|
|
|
|
|
|
|
```
|
|
|
|
-h, --help help for select
|
|
|
|
```
|
|
|
|
|
|
|
|
### SEE ALSO
|
|
|
|
|
2019-02-24 16:46:08 +03:00
|
|
|
* [git-bug](git-bug.md) - A bug tracker embedded in Git.
|
2018-09-18 14:17:39 +03:00
|
|
|
|