* Probably typographic error in tutorial 2
@ 2025-04-27 21:02 el24614
2025-04-27 21:54 ` Eric Sunshine
0 siblings, 1 reply; 3+ messages in thread
From: el24614 @ 2025-04-27 21:02 UTC (permalink / raw)
To: git
Hello,
I think in tutorial 2 (https://git.scm.com/docs/gittutorial-2) in the
first code box the second time that file.txt is edited ($ echo 'hello
world!' >file.txt) there should be an additional ">" because a single
one will overwrite the contents. As far as i understand from what
follows bellow, the text should be appended.
Kind Regards,
N.Antonetsis
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: Probably typographic error in tutorial 2
2025-04-27 21:02 Probably typographic error in tutorial 2 el24614
@ 2025-04-27 21:54 ` Eric Sunshine
2025-04-28 18:37 ` Junio C Hamano
0 siblings, 1 reply; 3+ messages in thread
From: Eric Sunshine @ 2025-04-27 21:54 UTC (permalink / raw)
To: el24614; +Cc: git
On Sun, Apr 27, 2025 at 5:44 PM el24614 <el24614@mail.ntua.gr> wrote:
> I think in tutorial 2 (https://git.scm.com/docs/gittutorial-2) in the
> first code box the second time that file.txt is edited ($ echo 'hello
> world!' >file.txt) there should be an additional ">" because a single
> one will overwrite the contents. As far as i understand from what
> follows bellow, the text should be appended.
Presumably you're talking about this example?
$ echo 'hello world' > file.txt
$ git add .
$ git commit -a -m "initial commit"
...
$ echo 'hello world!' >file.txt
$ git commit -a -m "add emphasis"
Note that the initial content of `file.txt` is "hello world", whereas
the updated content is "hello world!" with trailing exclamation point,
so the content of the file does change (indeed, the commit message
"add emphasis" hints at the way in which it changes). As such, the
example appears to be fine as-is and does not need to be changed to
use ">>" instead of ">".
That's not to say the example is ideal since the difference of "!" is
potentially difficult to spot. Had it instead been:
$ echo 'HELLO WORLD' >file.txt
or some other more obvious change, it probably would have been better.
Please feel free to submit a patch to improve the documentation if you
think such a change would help.
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: Probably typographic error in tutorial 2
2025-04-27 21:54 ` Eric Sunshine
@ 2025-04-28 18:37 ` Junio C Hamano
0 siblings, 0 replies; 3+ messages in thread
From: Junio C Hamano @ 2025-04-28 18:37 UTC (permalink / raw)
To: Eric Sunshine; +Cc: el24614, git
Eric Sunshine <sunshine@sunshineco.com> writes:
> On Sun, Apr 27, 2025 at 5:44 PM el24614 <el24614@mail.ntua.gr> wrote:
>> I think in tutorial 2 (https://git.scm.com/docs/gittutorial-2) in the
>> first code box the second time that file.txt is edited ($ echo 'hello
>> world!' >file.txt) there should be an additional ">" because a single
>> one will overwrite the contents. As far as i understand from what
>> follows bellow, the text should be appended.
>
> Presumably you're talking about this example?
>
> $ echo 'hello world' > file.txt
> $ git add .
> $ git commit -a -m "initial commit"
> ...
> $ echo 'hello world!' >file.txt
> $ git commit -a -m "add emphasis"
>
> Note that the initial content of `file.txt` is "hello world", whereas
> the updated content is "hello world!" with trailing exclamation point,
> so the content of the file does change (indeed, the commit message
> "add emphasis" hints at the way in which it changes). As such, the
> example appears to be fine as-is and does not need to be changed to
> use ">>" instead of ">".
>
> That's not to say the example is ideal since the difference of "!" is
> potentially difficult to spot. Had it instead been:
>
> $ echo 'HELLO WORLD' >file.txt
>
> or some other more obvious change, it probably would have been better.
> Please feel free to submit a patch to improve the documentation if you
> think such a change would help.
Or append "Goodbye world" to pair well with the first sentence?
By the way, I noticed that the URL given in the original post gives
a log-in page. IT IS *NOT* the git-scm.com that is associated with
this project, but is somebody else.
The URL the original poster meant is probably
https://git-scm.com/docs/gittutorial-2
I do not think the typo is malicious, though, and scm.com itself is
run by folks who have valid reasons to own the domain.
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2025-04-28 18:37 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-04-27 21:02 Probably typographic error in tutorial 2 el24614
2025-04-27 21:54 ` Eric Sunshine
2025-04-28 18:37 ` Junio C Hamano
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).