Skip to content

Commit b4c07a3

Browse files
committed
Add separator lines
1 parent 49915f1 commit b4c07a3

File tree

1 file changed

+21
-1
lines changed

1 file changed

+21
-1
lines changed

doc/youtube-script.sh

Lines changed: 21 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,30 +26,42 @@ install -m 644 gi-completion.sh /home/dds/etc/bash_completion.d/git-issue
2626

2727
$ git issue init # Initialize issue repository
2828
Initialized empty Issues repository in /home/dds/src/git-issue/.issues
29+
2930
$ git issue new -s 'New issue entered from the command line'
3031
Added issue e6a95c9
32+
3133
$ git issue new # Create a new issue (opens editor window)
3234
Added issue 7dfa5b7
35+
3336
$ git issue list # List open issues
3437
7dfa5b7 An issue entered from the editor
3538
e6a95c9 New issue entered from the command line
39+
3640
$ git issue comment e6a95c9 # Add an issue comment (opens editor window)
3741
Added comment 8c0d5b3
42+
3843
$ git issue tag e6a9 urgent # Add tag to an issue
3944
Added tag urgent
45+
4046
$ git issue tag e6a9 gui crash # Add two more tags
4147
Added tag gui
4248
Added tag crash
49+
4350
$ git issue tag -r e6a9 urgent # Remove a tag
4451
Removed tag urgent
52+
4553
$ git issue assign e6a9 joe@example.com # Assign issue
4654
Assigned to joe@example.com
55+
4756
$ git issue watcher e6a9 jane@example.com # Add issue watcher
4857
Added watcher jane@example.com
58+
4959
$ git issue list gui # List issues tagged as gui
5060
e6a95c9 New issue entered from the command line
61+
5162
$ # Push issues repository to a server
5263
$ git issue git remote add origin git@github.com:dspinellis/gi-example.git
64+
5365
$ git issue git push -u origin master
5466
Counting objects: 60, done.
5567
Compressing objects: 100% (50/50), done.
@@ -59,7 +71,6 @@ To git@github.com:dspinellis/gi-example.git
5971
* [new branch] master -> master
6072
Branch master set up to track remote branch master from origin.
6173

62-
6374
$ # Clone issues repository from server
6475
$ git issue clone git@github.com:dspinellis/gi-example.git my-issues
6576
Cloning into '.issues'...
@@ -70,18 +81,22 @@ Receiving objects: 100% (60/60), 5.35 KiB | 0 bytes/s, done.
7081
Resolving deltas: 100% (8/8), done.
7182
Checking connectivity... done.
7283
Cloned git@github.com:dspinellis/gi-example.git into my-issues
84+
7385
$ git issue list # List open issues
7486
7dfa5b7 An issue entered from the editor
7587
e6a95c9 New issue entered from the command line
88+
7689
$ git issue new -s 'Issue added on another host' # Create new issue
7790
Added issue abc9adc
91+
7892
$ git issue push # Push changes to server
7993
Counting objects: 7, done.
8094
Compressing objects: 100% (6/6), done.
8195
Writing objects: 100% (7/7), 767 bytes | 0 bytes/s, done.
8296
Total 7 (delta 0), reused 0 (delta 0)
8397
To git@github.com:dspinellis/gi-example.git
8498
d6be890..740f9a0 master -> master
99+
85100
$ git issue show 7dfa5b7 # Show issue added on the other host
86101
issue 7dfa5b7f4591ecaa8323716f229b84ad40f5275b
87102
Author: Diomidis Spinellis <dds@aueb.gr>
@@ -91,6 +106,7 @@ Tags: open
91106
An issue entered from the editor
92107

93108
Here is a longer description.
109+
94110
$ git issue show -c e6a95c9 # Show issue and coments
95111
issue e6a95c91b31ded8fc229a41cc4bd7d281ce6e0f1
96112
Author: Diomidis Spinellis <dds@aueb.gr>
@@ -123,6 +139,7 @@ Fast-forward
123139
2 files changed, 2 insertions(+)
124140
create mode 100644 issues/ab/c9adc61025a3cb73b0c67470b65cefc133a8d0/description
125141
create mode 100644 issues/ab/c9adc61025a3cb73b0c67470b65cefc133a8d0/tags
142+
126143
$ git issue list # List open issues
127144
7dfa5b7 An issue entered from the editor
128145
abc9adc Issue added on another host
@@ -134,6 +151,7 @@ $ mkdir github-project
134151
$ cd github-project/
135152
$ git issue init
136153
Initialized empty issues repository in /home/dds/github-project/.issues
154+
137155
$ git issue import github dspinellis git-issue-test-issues # Import GitHub issues
138156
Imported/updated issue #3 as 0a27c66
139157
Imported/updated issue #2 as feb2a2c
@@ -142,9 +160,11 @@ Imported/updated issue #2 comment 416631349 as 03acf84
142160
Imported/updated issue #2 comment 417048301 as 0cd48ed
143161
Imported/updated issue #2 comment 417049466 as 325a581
144162
Imported/updated issue #1 as bbe144d
163+
145164
$ git issue list
146165
feb2a2c An open issue on GitHub with a description and comments
147166
0a27c66 An open issue on GitHub with assignees and tags
167+
148168
$ git issue show 0a27c66
149169
issue 0a27c6633f492e42bb2a24e6ae458482a4690a55
150170
Author: dspinellis <dspinellis@users.noreply.github.com>

0 commit comments

Comments
 (0)