@@ -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
2828Initialized empty Issues repository in /home/dds/src/git-issue/.issues
29+
2930$ git issue new -s ' New issue entered from the command line'
3031Added issue e6a95c9
32+
3133$ git issue new # Create a new issue (opens editor window)
3234Added issue 7dfa5b7
35+
3336$ git issue list # List open issues
34377dfa5b7 An issue entered from the editor
3538e6a95c9 New issue entered from the command line
39+
3640$ git issue comment e6a95c9 # Add an issue comment (opens editor window)
3741Added comment 8c0d5b3
42+
3843$ git issue tag e6a9 urgent # Add tag to an issue
3944Added tag urgent
45+
4046$ git issue tag e6a9 gui crash # Add two more tags
4147Added tag gui
4248Added tag crash
49+
4350$ git issue tag -r e6a9 urgent # Remove a tag
4451Removed tag urgent
52+
4553$ git issue assign e6a9 joe@example.com # Assign issue
4654Assigned to joe@example.com
55+
4756$ git issue watcher e6a9 jane@example.com # Add issue watcher
4857Added watcher jane@example.com
58+
4959$ git issue list gui # List issues tagged as gui
5060e6a95c9 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
5466Counting objects: 60, done.
5567Compressing objects: 100% (50/50), done.
@@ -59,7 +71,6 @@ To git@github.com:dspinellis/gi-example.git
5971 * [new branch] master -> master
6072Branch 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
6576Cloning into ' .issues' ...
@@ -70,18 +81,22 @@ Receiving objects: 100% (60/60), 5.35 KiB | 0 bytes/s, done.
7081Resolving deltas: 100% (8/8), done.
7182Checking connectivity... done.
7283Cloned git@github.com:dspinellis/gi-example.git into my-issues
84+
7385$ git issue list # List open issues
74867dfa5b7 An issue entered from the editor
7587e6a95c9 New issue entered from the command line
88+
7689$ git issue new -s ' Issue added on another host' # Create new issue
7790Added issue abc9adc
91+
7892$ git issue push # Push changes to server
7993Counting objects: 7, done.
8094Compressing objects: 100% (6/6), done.
8195Writing objects: 100% (7/7), 767 bytes | 0 bytes/s, done.
8296Total 7 (delta 0), reused 0 (delta 0)
8397To 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
86101issue 7dfa5b7f4591ecaa8323716f229b84ad40f5275b
87102Author: 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
95111issue e6a95c91b31ded8fc229a41cc4bd7d281ce6e0f1
96112Author: 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
1271447dfa5b7 An issue entered from the editor
128145abc9adc Issue added on another host
@@ -134,6 +151,7 @@ $ mkdir github-project
134151$ cd github-project/
135152$ git issue init
136153Initialized empty issues repository in /home/dds/github-project/.issues
154+
137155$ git issue import github dspinellis git-issue-test-issues # Import GitHub issues
138156Imported/updated issue # 3 as 0a27c66
139157Imported/updated issue # 2 as feb2a2c
@@ -142,9 +160,11 @@ Imported/updated issue #2 comment 416631349 as 03acf84
142160Imported/updated issue # 2 comment 417048301 as 0cd48ed
143161Imported/updated issue # 2 comment 417049466 as 325a581
144162Imported/updated issue # 1 as bbe144d
163+
145164$ git issue list
146165feb2a2c An open issue on GitHub with a description and comments
1471660a27c66 An open issue on GitHub with assignees and tags
167+
148168$ git issue show 0a27c66
149169issue 0a27c6633f492e42bb2a24e6ae458482a4690a55
150170Author: dspinellis < dspinellis@users.noreply.github.com>
0 commit comments