Skip to content

Commit cf025b5

Browse files
committed
Fixed some typos, and re-arranged a few items. Feel free to revert/further correct.
1 parent 780b5c7 commit cf025b5

File tree

1 file changed

+36
-38
lines changed

1 file changed

+36
-38
lines changed

rev_news/drafts/edition-43.md

Lines changed: 36 additions & 38 deletions
Original file line numberDiff line numberDiff line change
@@ -86,54 +86,52 @@ This edition covers what happened during the month of August 2018.
8686
Peff also considers too generic.
8787

8888
Tacitus Aedifex also replied to Michael saying that he had "often
89-
wanted an integrated bug database like this", and that he has
89+
wanted an integrated bug database like this", and that he had
9090
created his own solution for this purpose using a "subrepo storing
91-
bug reports and coments in .txt files" and "bash porcelain scripts".
91+
bug reports and comments in .txt files" and "bash porcelain scripts".
9292

93-
Junio Hamano, the Git maintainer, replied to Michael too. He told
93+
Junio Hamano, the Git maintainer, replied to Michael, too. He told
9494
that this reminds him of a "demo Scott Chacon showed us ages ago".
9595

9696
Jonathan added that the tool Scott demoed was TicGit. Then Jonathan
9797
started along with Kyle Meyer to compile the following lists of
9898
similar tools and links related to them in a small subthread:
99-
100-
tools:
101-
102-
- [TicGit](https://github.com/jeffWelling/ticgit)
103-
- [Ditz](https://github.com/jashmenn/ditz)
104-
- [git-issues](https://github.com/duplys/git-issues)
105-
- [cil](https://github.com/chilts/cil)
106-
- [Bugs Everywhere](http://bugseverywhere.org/)
107-
- milli by Steve Kemp (no copy found)
108-
- [Simple Defects](https://syncwith.us/sd/)
109-
- [Kipling](https://gitorious.org/kipling/mainline)
110-
- [BuGit](https://gitlab.com/monnier/bugit) ([discussion on the mailing list](https://public-inbox.org/git/[email protected]/))
111-
- [git-dit](https://github.com/neithernut/git-dit)
112-
113-
lists of such tools:
114-
115-
- [good list on a non Git-specific wiki](https://dist-bugs.branchable.com/software/)
116-
- [old list on the Git wiki](https://git.wiki.kernel.org/index.php/InterfacesFrontendsAndTools#Bug.2Fissue_trackers.2C_etc)
117-
- [nice though old list](http://www.cs.unb.ca/~bremner/blog/posts/git-issue-trackers/)
118-
99+
- tools:
100+
- [TicGit](https://github.com/jeffWelling/ticgit)
101+
- [Ditz](https://github.com/jashmenn/ditz)
102+
- [git-issues](https://github.com/duplys/git-issues)
103+
- [cil](https://github.com/chilts/cil)
104+
- [Bugs Everywhere](http://bugseverywhere.org/)
105+
- milli by Steve Kemp (no copy found)
106+
- [Simple Defects](https://syncwith.us/sd/)
107+
- [Kipling](https://gitorious.org/kipling/mainline)
108+
- [BuGit](https://gitlab.com/monnier/bugit) ([discussion on the mailing list](https://public-inbox.org/git/[email protected]/))
109+
- [git-dit](https://github.com/neithernut/git-dit)
110+
111+
- lists of such tools:
112+
- [good list on a non Git-specific wiki](https://dist-bugs.branchable.com/software/)
113+
- [old list on the Git wiki](https://git.wiki.kernel.org/index.php/InterfacesFrontendsAndTools#Bug.2Fissue_trackers.2C_etc)
114+
- [nice though old list](http://www.cs.unb.ca/~bremner/blog/posts/git-issue-trackers/)
115+
116+
<br>
119117
Jonathan commented that it was nice to see new work in this area as
120118
"it seems to have gone mostly quiet since 2014". He also added
121119
git-dit authors in CC of his last email in the subthread, while
122120
saying that git-dit seems to have "very similar goals and a similar
123121
data model" as git-bug, and suggesting that the authors could work
124122
"more closely together".
125123

126-
This later [prompted](https://public-inbox.org/git/[email protected]_W_921V_1_39_000/)
127-
Julian Ganz, a co-author of git-dit, to request comments in an email
128-
called "[RFC] Git enumerations" about a functionality which he
129-
originally planned on introducing as a git-dit internal
130-
feature. Unfortunately it looks like noone commented on the proposed
131-
feature.
124+
This later prompted Julian Ganz, a co-author of git-dit, to request
125+
comments in an email called
126+
"[\[RFC\] Git enumerations](https://public-inbox.org/git/[email protected]_W_921V_1_39_000/)"
127+
about a functionality which he had originally planned on introducing
128+
it as a git-dit internal feature. Unfortunately, it looks like no one
129+
commented on the proposed feature.
132130

133131
Jonathan also sent another reply to Michael's original
134132
email. Commenting on the [documentation of the internal design](https://github.com/MichaelMure/git-bug/blob/master/doc/model.md)
135-
of git-bug, he said that he likes that git-bug uses as identifier
136-
for the bug the hash of the first commit in the chain of commit of
133+
of git-bug, he said that he likes that git-bug uses the hash of the
134+
first commit in the chain of related commits as identifier for
137135
the bug.
138136

139137
About the fact that Git doesn't provide a low-level command to
@@ -142,12 +140,12 @@ This edition covers what happened during the month of August 2018.
142140
code (also used for cherry-pick) is less reliant on the index and
143141
worktree, and rebase code is being ported to C (see the article
144142
about Google Summer of Code 2018 above). Jonathan suggested setting
145-
the GIT_INDEX environment variable to point to a temporary index
143+
the `GIT_INDEX` environment variable to point to a temporary index
146144
file as a work-around until something like
147145
`git cherry-pick --onto=<branch> <revisions>` is implemented.
148146

149147
Jonathan then asked about which federation model git-bug intends to
150-
support. Micheal replied giving technical details about how the tool
148+
support. Michael replied giving technical details about how the tool
151149
works and saying:
152150

153151
> So for now, collaboration is based on push/pull to whatever remote you
@@ -164,7 +162,7 @@ This edition covers what happened during the month of August 2018.
164162
165163
About Jonathan's suggestion for an `--onto` option in `git
166164
cherry-pick`, Elijah Newren replied that, after his current work on
167-
the merge code, he indeed wants to work on that, and also
165+
the merge code, he indeed wanted to work on that, and also
168166
investigate "in-memory" merges to improve interactive rebase
169167
performance. He agreed that "we're pretty close to having a
170168
rebase-without-touching-index-or-worktree that we can make
@@ -194,7 +192,7 @@ This edition covers what happened during the month of August 2018.
194192
[11.2.0](https://about.gitlab.com/2018/08/22/gitlab-11-2-released/)
195193
+ Bitbucket Server [v5.14](https://confluence.atlassian.com/bitbucketserver/bitbucket-server-release-notes-872139866.html)
196194
+ Gerrit Code Review [v2.14.12](https://groups.google.com/forum/#!msg/repo-discuss/iTc-8qSHNOM/WchxHqg7BQAJ;context-place=forum/repo-discuss)
197-
+ GitHub Enterprise [v2.14.5](https://enterprise.github.com/releases/2.14.5),
195+
+ GitHub Enterprise [v2.14.5](https://enterprise.github.com/releases/2.14.5)
198196
[v2.13.11](https://enterprise.github.com/releases/2.13.11),
199197
[v2.12.19](https://enterprise.github.com/releases/2.12.19),
200198
[v2.11.25](https://enterprise.github.com/releases/2.11.25),
@@ -208,9 +206,9 @@ This edition covers what happened during the month of August 2018.
208206
[v2.11.23](https://enterprise.github.com/releases/2.11.23)
209207
+ GitHub Desktop [v1.4.0](https://desktop.github.com/release-notes/),
210208
[v1.3.5](https://desktop.github.com/release-notes/),
211-
[v1.3.4](https://desktop.github.com/release-notes/),
209+
[v1.3.4](https://desktop.github.com/release-notes/)
212210
+ GitKraken [v4.0.4](https://support.gitkraken.com/release-notes/current),
213-
[v4.0.3](https://support.gitkraken.com/release-notes/current),
211+
[v4.0.3](https://support.gitkraken.com/release-notes/current)
214212

215213
## Other News
216214

@@ -219,7 +217,7 @@ __Various__
219217

220218
* [GitOps — `git push` all the things](https://dzone.com/articles/gitops-git-push-all-the-things)
221219
* [Gerrit User Summit 2018](https://gerrit.googlesource.com/summit/2018/+/master/index.md) will be hosted at Cloudera HQ in Palo Alto,
222-
15-16 Nov. Registration is now open to all the Gerrit and JGit users, maintainers and supporters.
220+
15-16 Nov. Registration is now open to all Gerrit and JGit users, maintainers and supporters.
223221

224222
__Light reading__
225223

0 commit comments

Comments
 (0)