mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-02-09 17:46:33 +00:00
Update cheatsheets
This commit is contained in:
38
git-bug
Normal file
38
git-bug
Normal file
@@ -0,0 +1,38 @@
|
||||
---
|
||||
syntax: markdown
|
||||
tags: [tldr, common]
|
||||
source: https://github.com/tldr-pages/tldr.git
|
||||
---
|
||||
# git bug
|
||||
|
||||
> A distributed bug tracker that uses Git's internal storage, so no files are added in your project.
|
||||
> You may submit your problems to the same Git remote you use to interact with others, much like commits and branches.
|
||||
> More information: <https://github.com/MichaelMure/git-bug/blob/master/doc/md/git-bug.md>.
|
||||
|
||||
- Create a new identity:
|
||||
|
||||
`git bug user create`
|
||||
|
||||
- Create a new bug:
|
||||
|
||||
`git bug add`
|
||||
|
||||
- You can push your new entry to a remote:
|
||||
|
||||
`git bug push`
|
||||
|
||||
- You can pull for updates:
|
||||
|
||||
`git bug pull`
|
||||
|
||||
- List existing bugs:
|
||||
|
||||
`git bug ls`
|
||||
|
||||
- Filter and sort bugs using a query:
|
||||
|
||||
`git bug ls "{{status}}:{{open}} {{sort}}:{{edit}}"`
|
||||
|
||||
- Search for bugs by text content:
|
||||
|
||||
`git bug ls "{{search_query}}" baz`
|
||||
Reference in New Issue
Block a user