mirror of
https://github.com/laurent22/joplin.git
synced 2024-12-18 09:35:20 +02:00
10 lines
350 B
Markdown
10 lines
350 B
Markdown
|
```
|
||
|
# List issues assigned to you that are labeled "urgent"
|
||
|
$ hub issue -a YOUR_USER -l urgent
|
||
|
|
||
|
# List the URLs of at most 20 PRs based on "develop" branch:
|
||
|
$ hub pr list -L 20 -b develop --format='%t [%H] | %U%n'
|
||
|
|
||
|
# Create a GitHub release with notes from a file and copy the URL to clipboard:
|
||
|
$ hub release create -c -F release-notes.txt v2.3.0
|
||
|
```
|