@@ -6,9 +6,9 @@ remote: Compressing objects: 100% (260/260), done.
66remote: Total 1683 (delta 559), reused 1029 (delta 538), pack-reused 626
77Receiving objects: 100% (1683/1683), 494.52 KiB | 1.74 MiB/s, done.
88Resolving deltas: 100% (947/947), done.
9- $ cd git-issue
10-
11- $ sudo make install # Install
9+ $ cd git-issue
10+
11+ $ sudo make install # Install
1212mkdir -p " /usr/local/share/man/man1"
1313mkdir -p " /usr/local/bin"
1414mkdir -p " /usr/local/lib" /git-issue
@@ -17,62 +17,62 @@ install lib/git-issue/import-export.sh "/usr/local/lib"/git-issue/import-export.
1717install -m 644 git-issue.1 " /usr/local/share/man/man1" /
1818mkdir -p /usr/local/etc/bash_completion.d
1919install -m 644 gi-completion.sh /usr/local/etc/bash_completion.d/git-issue
20-
21- $ make install PREFIX=$HOME # Install for current user
20+
21+ $ make install PREFIX=$HOME # Install for current user
2222install git-issue.sh " /home/dds/bin" /git-issue
2323install lib/git-issue/import-export.sh " /home/dds/lib" /git-issue/import-export.sh
2424install -m 644 git-issue.1 " /home/dds/share/man/man1" /
2525install -m 644 gi-completion.sh /home/dds/etc/bash_completion.d/git-issue
26-
27- $ git issue init # Initialize issue repository
26+
27+ $ git issue init # Initialize issue repository
2828Initialized empty Issues repository in /home/dds/src/git-issue/.issues
29-
30- $ git issue new -s ' New issue entered from the command line'
29+
30+ $ git issue new -s ' New issue entered from the command line'
3131Added issue e6a95c9
32-
33- $ git issue new # Create a new issue (opens editor window)
32+
33+ $ git issue new # Create a new issue (opens editor window)
3434Added issue 7dfa5b7
35-
36- $ git issue list # List open issues
35+
36+ $ git issue list # List open issues
37377dfa5b7 An issue entered from the editor
3838e6a95c9 New issue entered from the command line
39-
40- $ git issue comment e6a95c9 # Add an issue comment (opens editor window)
39+
40+ $ git issue comment e6a95c9 # Add an issue comment (opens editor window)
4141Added comment 8c0d5b3
42-
43- $ git issue tag e6a9 urgent # Add tag to an issue
42+
43+ $ git issue tag e6a9 urgent # Add tag to an issue
4444Added tag urgent
45-
46- $ git issue tag e6a9 gui crash # Add two more tags
45+
46+ $ git issue tag e6a9 gui crash # Add two more tags
4747Added tag gui
4848Added tag crash
49-
50- $ git issue tag -r e6a9 urgent # Remove a tag
49+
50+ $ git issue tag -r e6a9 urgent # Remove a tag
5151Removed tag urgent
52-
53- $ git issue assign e6a9
[email protected] # Assign issue52+
53+ $ git issue assign e6a9
[email protected] # Assign issue545455-
56- $ git issue watcher e6a9
[email protected] # Add issue watcher55+
56+ $ git issue watcher e6a9
[email protected] # Add issue watcher575758-
59- $ git issue list gui # List issues tagged as gui
58+
59+ $ git issue list gui # List issues tagged as gui
6060e6a95c9 New issue entered from the command line
61-
61+
6262$ # Push issues repository to a server
63- $ git issue git remote add origin
[email protected] :dspinellis/gi-example.git
64-
65- $ git issue git push -u origin master
63+ $ git issue git remote add origin
[email protected] :dspinellis/gi-example.git
64+
65+ $ git issue git push -u origin master
6666Counting objects: 60, done.
6767Compressing objects: 100% (50/50), done.
6868Writing objects: 100% (60/60), 5.35 KiB | 0 bytes/s, done.
6969Total 60 (delta 8), reused 0 (delta 0)
7070To
[email protected] :dspinellis/gi-example.git
7171 * [new branch] master -> master
7272Branch master set up to track remote branch master from origin.
73-
73+
7474$ # Clone issues repository from server
75- $ git issue clone
[email protected] :dspinellis/gi-example.git my-issues
75+ $ git issue clone
[email protected] :dspinellis/gi-example.git my-issues
7676Cloning into ' .issues' ...
7777remote: Counting objects: 60, done.
7878remote: Compressing objects: 100% (42/42), done.
@@ -81,51 +81,51 @@ Receiving objects: 100% (60/60), 5.35 KiB | 0 bytes/s, done.
8181Resolving deltas: 100% (8/8), done.
8282Checking connectivity... done.
8383Cloned
[email protected] :dspinellis/gi-example.git into my-issues
84-
85- $ git issue list # List open issues
84+
85+ $ git issue list # List open issues
86867dfa5b7 An issue entered from the editor
8787e6a95c9 New issue entered from the command line
88-
89- $ git issue new -s ' Issue added on another host' # Create new issue
88+
89+ $ git issue new -s ' Issue added on another host' # Create new issue
9090Added issue abc9adc
91-
92- $ git issue push # Push changes to server
91+
92+ $ git issue push # Push changes to server
9393Counting objects: 7, done.
9494Compressing objects: 100% (6/6), done.
9595Writing objects: 100% (7/7), 767 bytes | 0 bytes/s, done.
9696Total 7 (delta 0), reused 0 (delta 0)
9797To
[email protected] :dspinellis/gi-example.git
9898 d6be890..740f9a0 master -> master
99-
100- $ git issue show 7dfa5b7 # Show issue added on the other host
99+
100+ $ git issue show 7dfa5b7 # Show issue added on the other host
101101issue 7dfa5b7f4591ecaa8323716f229b84ad40f5275b
102102Author: Diomidis Spinellis
< [email protected] > 103103Date: Fri, 29 Jan 2016 01:03:24 +0200
104104Tags: open
105-
105+
106106 An issue entered from the editor
107-
107+
108108 Here is a longer description.
109-
110- $ git issue show -c e6a95c9 # Show issue and coments
109+
110+ $ git issue show -c e6a95c9 # Show issue and coments
111111issue e6a95c91b31ded8fc229a41cc4bd7d281ce6e0f1
112112Author: Diomidis Spinellis
< [email protected] > 113113Date: Fri, 29 Jan 2016 01:03:20 +0200
114114Tags: open urgent gui crash
115115116116117-
117+
118118 New issue entered from the command line
119-
119+
120120comment 8c0d5b3d77bf93b937cb11038b129f927d49e34a
121121Author: Diomidis Spinellis
< [email protected] > 122122Date: Fri, 29 Jan 2016 01:03:57 +0200
123-
123+
124124 First comment regarding the issue.
125-
126-
125+
126+
127127$ # On the original host
128- $ git issue pull # Pull in remote changes
128+ $ git issue pull # Pull in remote changes
129129remote: Counting objects: 7, done.
130130remote: Compressing objects: 100% (6/6), done.
131131remote: Total 7 (delta 0), reused 7 (delta 0), pack-reused 0
@@ -139,33 +139,33 @@ Fast-forward
139139 2 files changed, 2 insertions(+)
140140 create mode 100644 issues/ab/c9adc61025a3cb73b0c67470b65cefc133a8d0/description
141141 create mode 100644 issues/ab/c9adc61025a3cb73b0c67470b65cefc133a8d0/tags
142-
143- $ git issue list # List open issues
142+
143+ $ git issue list # List open issues
1441447dfa5b7 An issue entered from the editor
145145abc9adc Issue added on another host
146146e6a95c9 New issue entered from the command line
147-
148-
147+
148+
149149$ # GitHub import functionality
150- $ mkdir github-project
151- $ cd github-project/
152- $ git issue init
150+ $ mkdir github-project
151+ $ cd github-project/
152+ $ git issue init
153153Initialized empty issues repository in /home/dds/github-project/.issues
154-
155- $ git issue import github dspinellis git-issue-test-issues # Import GitHub issues
154+
155+ $ git issue import github dspinellis git-issue-test-issues # Import GitHub issues
156156Imported/updated issue # 3 as 4a0b58a
157157Imported/updated issue # 2 as 1e87224
158158Imported/updated issue # 2 comment 416631296 as 11bf4e3
159159Imported/updated issue # 2 comment 416631349 as 002e327
160160Imported/updated issue # 2 comment 417048301 as 20aeee8
161161Imported/updated issue # 2 comment 417049466 as a8a12ac
162162Imported/updated issue # 1 as 3ea0e3e
163-
164- $ git issue list
163+
164+ $ git issue list
1651651e87224 An open issue on GitHub with a description and comments
1661664a0b58a An open issue on GitHub with assignees and tags
167-
168- $ git issue show 4a0b58a
167+
168+ $ git issue show 4a0b58a
169169issue 4a0b58a4b7eb7e4e0a3e451746ccd687d9f45048
170170Author: dspinellis
< [email protected] > 171171Date: Thu, 30 Aug 2018 20:59:59 +0000
@@ -177,26 +177,26 @@ Tags: bug
177177 open
178178Assigned-to: dspinellis
179179 louridas
180-
180+
181181 An open issue on GitHub with assignees and tags
182-
182+
183183 Description
184-
184+
185185Edit History:
186186* Thu, 30 Aug 2018 20:59:59 +0000 by dspinellis
187187188-
189- $ git issue milestone 4a0b58a R-3.5 # Add milestone
188+
189+ $ git issue milestone 4a0b58a R-3.5 # Add milestone
190190Added milestone R-3.5
191-
192- $ git issue duedate 4a0b58a 2038-01-18 # Set a nice due date
191+
192+ $ git issue duedate 4a0b58a 2038-01-18 # Set a nice due date
193193Added duedate 2038-01-18T00:00:00+02:00
194-
195- $ git issue close 1e87224 # Close another issue
194+
195+ $ git issue close 1e87224 # Close another issue
196196Added tag closed
197197Removed tag open
198-
199- $ git issue export github dspinellis git-issue-test-issues # Export modified issues
198+
199+ $ git issue export github dspinellis git-issue-test-issues # Export modified issues
200200Issue 3ea0e3ef91619eedfdfd25f93135a9dd99e3435b not modified, skipping...
201201Exporting issue 1e872249eebe4f984d188700115484d75ab28cd8 as # 2
202202Comment 11bf4e3c5a950142eff5579c23f805ee67c19a93 not modified, skipping...
@@ -205,5 +205,5 @@ Comment 20aeee8898c28bc6793fb6114baf2e41397c0d8e not modified, skipping...
205205Comment a8a12aca79e8a14c09f91e5faaa8ce79a1b9f180 not modified, skipping...
206206Exporting issue 4a0b58a4b7eb7e4e0a3e451746ccd687d9f45048 as # 3
207207Creating new Milestone R-3.5...
208-
208+
209209$
0 commit comments