Skip to content

Commit 079a323

Browse files
committed
Supplied a really tiny amount of spelling and formatting corrections.
1 parent 768ab37 commit 079a323

File tree

1 file changed

+21
-21
lines changed

1 file changed

+21
-21
lines changed

rev_news/drafts/edition-116.md

Lines changed: 21 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Welcome to the 116th edition of [Git Rev News](https://git.github.io/rev_news/re
1313
a digest of all things Git. For our goals, the archives, the way we work, and how to contribute or to
1414
subscribe, see [the Git Rev News page](https://git.github.io/rev_news/rev_news/) on [git.github.io](http://git.github.io).
1515

16-
This edition covers what happened during the months of September 2024 and October 2024.
16+
This edition covers what happened during the months of September and October 2024.
1717

1818
## Discussions
1919

@@ -27,7 +27,7 @@ This edition covers what happened during the months of September 2024 and Octobe
2727

2828
### Support
2929

30-
* [fatal from submodule status --recursive when used with grep -q](https://lore.kernel.org/git/CAKDm0rNaHbzoiPg=DeuCoxzooNAsxw2BJfc0wg7fC_-=o9uJ7w@mail.gmail.com/)
30+
* [fatal from `submodule status --recursive` when used with `grep -q`](https://lore.kernel.org/git/CAKDm0rNaHbzoiPg=DeuCoxzooNAsxw2BJfc0wg7fC_-=o9uJ7w@mail.gmail.com/)
3131

3232
Matt Liberty reported that when he tried using
3333
`git submodule status --recursive | grep -q "^+"` on a repo with
@@ -41,11 +41,11 @@ This edition covers what happened during the months of September 2024 and Octobe
4141

4242
Phillip Wood replied to Matt saying he assumed that `grep`'s exit
4343
broke the pipe between `git` and `grep`, so `git` received a
44-
'SIGPIPE' signal which killed it. Phillip suggested consuming the
44+
`SIGPIPE` signal which killed it. Phillip suggested consuming the
4545
whole output from Git if the exit code from it was wanted.
4646

4747
Matt replied to Phillip that he was interested in the exit code from
48-
`grep` not from `git` and that Git shouldn't output any error when
48+
`grep`, not from `git`, and that Git shouldn't output any error when
4949
its output is connected to a pipe that gets broken, in the same way
5050
as the `yes` command, for example, doesn't output any error when
5151
piped to `grep -q y`.
@@ -59,17 +59,17 @@ This edition covers what happened during the months of September 2024 and Octobe
5959

6060
Then Phillip replied to Matt's first reply to him. He asked if all
6161
Matt wanted was that `git submodule status` did not print any error
62-
message when it receives a SIGPIPE signal. Matt replied that he
62+
message when it receives a `SIGPIPE` signal. Matt replied that he
6363
wanted both no error message and a 0 exit code from it.
6464

6565
Junio replied to Matt that it was reasonable to ask for no error
6666
message, but it should be OK if the exit code was related to the
67-
SIGPIPE message that the Git command received and that killed
67+
`SIGPIPE` message that the Git command received and that killed
6868
it. Junio used the example that even `yes` exited with code 130 when
6969
killed using the Control-C keys on a terminal.
7070

7171
The exit code associated with a signal is '128 + the signal number',
72-
for example as the Control-C keys send a SIGINT signal, which signal
72+
for example as the Control-C keys send a `SIGINT` signal, which signal
7373
number is 2, processes killed this way should exit with code '128 + 2',
7474
so 130.
7575

@@ -82,7 +82,7 @@ This edition covers what happened during the months of September 2024 and Octobe
8282
shell option was used.
8383

8484
Phillip replied to Matt suggesting he remap the exit code
85-
associated with SIGPIPE, which is 141 (128 + 13) to 0, if he was
85+
associated with `SIGPIPE`, which is 141 (128 + 13), to 0, if he was
8686
using `pipefail` but still wanted a 0 exit code. Phillip also gave
8787
an example shell function to help with that remapping, and sent
8888
[a first version of a patch](https://lore.kernel.org/git/[email protected]/)
@@ -114,23 +114,23 @@ _Editor's note: Just like in our previous edition, we return with another
114114

115115
C was the first programming language that I learnt, and I wanted to
116116
try working on a non-trivial software project. I watched a YouTube
117-
video on open-source and that’s where I got the idea of looking for
117+
video on open source and that’s where I got the idea of looking for
118118
open-source projects to contribute to. Git and VLC were the only
119119
open-source C-written software that I was familiar with and used in
120120
day-to-day life, so I decided to start contributing to Git out of the two.
121-
By the time GSoC came around, Git was the only open-source
121+
By the time GSoC came around, Git was the only open source
122122
community that I was familiar with, so I decided to choose it as my
123123
GSoC organization.
124124

125125
* How do you feel your contribution has impacted the Git community
126-
or the broader open-source ecosystem?
126+
or the broader open source ecosystem?
127127

128128
[My project](https://summerofcode.withgoogle.com/programs/2024/projects/tlh611d7)
129129
was about moving and improving reftable tests, so I think
130130
my contributions made life somewhat easier for other Git hackers,
131-
especially those that frequent the reftable sub-project. My project
131+
especially those who frequent the reftable sub-project. My project
132132
didn’t really affect any user-facing aspect of Git, so I don’t think it had
133-
a huge impact on the broader open-source ecosystem, besides the
133+
a huge impact on the broader open source ecosystem, besides the
134134
fact that it gained another lifelong contributor.
135135

136136
* Is there any aspect of Git that you now see differently after having
@@ -140,17 +140,17 @@ _Editor's note: Just like in our previous edition, we return with another
140140
my project completely changed my mental model for the tool. Before
141141
GSoC, Git was a clunky tool reserved for software development work
142142
but post-Git, I know the most frequent commands like the back of my
143-
hand, and I’ve already used Git to version control many of my non
144-
software files. I feel like I’ve learnt enough Git to last my entire career.
143+
hand, and I’ve already used Git to version control many of my non-software
144+
files. I feel like I’ve learnt enough Git to last my entire career.
145145

146146
* How do you balance your contributions with other responsibilities like
147147
work or school?
148148

149149
I had summer vacation for the entire duration of GSoC and no other work
150150
commitments, so I had no problems finding time for my GSoC project.
151151

152-
* Can you share how GSoC helped enhance your technical and non
153-
technical skills (like communication, project management, etc.)?
152+
* Can you share how GSoC helped enhance your technical and non-technical
153+
skills (like communication, project management, etc.)?
154154

155155
In terms of technical skills, I think my C and Git skills saw the biggest jump.
156156
I am a lot more comfortable working with those two tools than when I
@@ -195,7 +195,7 @@ _Editor's note: Just like in our previous edition, we return with another
195195

196196
The [Git GUI](https://git-scm.com/docs/git-gui) tool. I believe that
197197
would make Git far more accessible than it currently is and get it
198-
incorporated in a lot more people’s day-to-day works.
198+
incorporated in a lot more peoples’ day-to-day works.
199199

200200
* If you could remove something from Git without worrying about
201201
backwards compatibility, what would it be?
@@ -212,7 +212,7 @@ _Editor's note: Just like in our previous edition, we return with another
212212
* What is your toolbox for interacting with the mailing list and for
213213
development of Git?
214214

215-
I used git’s `send-email` to send patches to the mailing list (especially
215+
I used Git’s `send-email` to send patches to the mailing list (especially
216216
the `--compose` and `--annotate` flags) and Gmail’s online client to
217217
convey non-patch mails. For developing Git, I used Vim as the editor
218218
on an Ubuntu machine and Git as the version control software (duh).
@@ -232,7 +232,7 @@ _Editor's note: Just like in our previous edition, we return with another
232232
Go through Git’s [‘My First Contribution tutorial’](https://git-scm.com/docs/MyFirstContribution)
233233
for the initial setup and to get an idea of what’s it like
234234
to work on Git. Then work on a few ‘microprojects’ ([more information on
235-
the Git Developer's website](https://git.github.io/General-Microproject-Information/) )
235+
the Git Developer's website](https://git.github.io/General-Microproject-Information/))
236236
to dip your toes in the Git Development community. From there, you
237237
can figure out interesting stuff to work on by yourself.
238238

@@ -241,7 +241,7 @@ _Editor's note: Just like in our previous edition, we return with another
241241
have advice for them?
242242

243243
Yes. I believe that Git is a tool that every working professional can find
244-
useful regardless of whether they work in the software industry or not
244+
useful regardless of whether they work in the software industry or not,
245245
and working on Git through an open-source program is an excellent way
246246
to get good at it in a short period of time. There’s also the added benefit
247247
of joining a large and active community of amazingly experienced

0 commit comments

Comments
 (0)