git@vger.kernel.org mailing list mirror (one of many)
 help / color / mirror / code / Atom feed
* Found error in documentation, looking for advice on how to start contributing
@ 2021-03-05  0:04 Dominik Lameter
  2021-03-05  0:31 ` Emily Shaffer
  2021-03-05 17:08 ` Martin Ågren
  0 siblings, 2 replies; 4+ messages in thread
From: Dominik Lameter @ 2021-03-05  0:04 UTC (permalink / raw)
  To: git

Hi all,

I don't know if this is the place for this question, let me know if I
should send it elsewhere.

I was reading a portion of the documentation today and found a
paragraph out of place in my local documentation, as well as on
https://git-scm.com/docs/git-log and in the git/git GitHub repository.
I have never contributed to an open source project before and I think
this would be a simple place to start. I've read through the readme
and Documentation/SubmittingPatches document, however with the
https://github.com/git/git repository being publish only, what git
repository do I base my changes on for documentation patches?

Thanks in advance,
Dominik

p.s. sorry if this email is a duplicate, this one should be plain text

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: Found error in documentation, looking for advice on how to start contributing
  2021-03-05  0:04 Found error in documentation, looking for advice on how to start contributing Dominik Lameter
@ 2021-03-05  0:31 ` Emily Shaffer
  2021-03-05  1:38   ` Dominik Lameter
  2021-03-05 17:08 ` Martin Ågren
  1 sibling, 1 reply; 4+ messages in thread
From: Emily Shaffer @ 2021-03-05  0:31 UTC (permalink / raw)
  To: Dominik Lameter; +Cc: git, git-mentoring

On Thu, Mar 04, 2021 at 06:04:01PM -0600, Dominik Lameter wrote:
> 
> Hi all,

Hi and welcome!

> 
> I don't know if this is the place for this question, let me know if I
> should send it elsewhere.
> 
> I was reading a portion of the documentation today and found a
> paragraph out of place in my local documentation, as well as on
> https://git-scm.com/docs/git-log and in the git/git GitHub repository.
> I have never contributed to an open source project before and I think
> this would be a simple place to start. I've read through the readme
> and Documentation/SubmittingPatches document, however with the
> https://github.com/git/git repository being publish only, what git
> repository do I base my changes on for documentation patches?

I think the My First Contribution guide can help you, especially if you
start from here:
https://git-scm.com/docs/MyFirstContribution#add-documentation

(The rest of the guide before that anchor may also be useful to you, but
not specifically for a documentation change.)

This is definitely the right list, so do write back if you have
questions that aren't answered by that guide.

 - Emily

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: Found error in documentation, looking for advice on how to start contributing
  2021-03-05  0:31 ` Emily Shaffer
@ 2021-03-05  1:38   ` Dominik Lameter
  0 siblings, 0 replies; 4+ messages in thread
From: Dominik Lameter @ 2021-03-05  1:38 UTC (permalink / raw)
  To: Emily Shaffer; +Cc: git, git-mentoring

Awesome, thanks! I'll go through that link.

On Thu, Mar 4, 2021, 6:31 PM Emily Shaffer <emilyshaffer@google.com> wrote:
>
> On Thu, Mar 04, 2021 at 06:04:01PM -0600, Dominik Lameter wrote:
> >
> > Hi all,
>
> Hi and welcome!
>
> >
> > I don't know if this is the place for this question, let me know if I
> > should send it elsewhere.
> >
> > I was reading a portion of the documentation today and found a
> > paragraph out of place in my local documentation, as well as on
> > https://git-scm.com/docs/git-log and in the git/git GitHub repository.
> > I have never contributed to an open source project before and I think
> > this would be a simple place to start. I've read through the readme
> > and Documentation/SubmittingPatches document, however with the
> > https://github.com/git/git repository being publish only, what git
> > repository do I base my changes on for documentation patches?
>
> I think the My First Contribution guide can help you, especially if you
> start from here:
> https://git-scm.com/docs/MyFirstContribution#add-documentation
>
> (The rest of the guide before that anchor may also be useful to you, but
> not specifically for a documentation change.)
>
> This is definitely the right list, so do write back if you have
> questions that aren't answered by that guide.
>
>  - Emily

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: Found error in documentation, looking for advice on how to start contributing
  2021-03-05  0:04 Found error in documentation, looking for advice on how to start contributing Dominik Lameter
  2021-03-05  0:31 ` Emily Shaffer
@ 2021-03-05 17:08 ` Martin Ågren
  1 sibling, 0 replies; 4+ messages in thread
From: Martin Ågren @ 2021-03-05 17:08 UTC (permalink / raw)
  To: Dominik Lameter; +Cc: Git Mailing List

Hi Dominik,

Welcome to the list.

On Fri, 5 Mar 2021 at 02:04, Dominik Lameter <dominik@graphe.net> wrote:
> I don't know if this is the place for this question, let me know if I
> should send it elsewhere.
>
> this would be a simple place to start. I've read through the readme
> and Documentation/SubmittingPatches document, however with the
> https://github.com/git/git repository being publish only, what git
> repository do I base my changes on for documentation patches?

You can certainly clone from github.com/git/git, no problem, or make a
fork. The "publish only" remark means that commits/patches don't reach
that repo through pull requests, i.e., they don't really enter "through"
GitHub. Rather, they reach Junio (the maintainer) through this mailing
list. He'll carefully collect the various topics flying around here and
turn them into branches, and publish those at various places, one of
which is github.com. Thus "publish only". Anyway, long story short,
you've found the right place. :-)

And all that said, there is a way of making a GitHub pull request in a
way that it reaches this mailing list: GitGitGadget. I saw that Emily
referred you to MyFirstContribution.txt -- you'll find more there.

By the time you feel ready to submit a patch, feel free to cc me and
I'd be happy to try to review it. And even before then, if you have any
questions, just ask. :-)

Martin

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2021-03-05 17:09 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-03-05  0:04 Found error in documentation, looking for advice on how to start contributing Dominik Lameter
2021-03-05  0:31 ` Emily Shaffer
2021-03-05  1:38   ` Dominik Lameter
2021-03-05 17:08 ` Martin Ågren

Code repositories for project(s) associated with this public inbox

	https://80x24.org/mirrors/git.git

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 read-only IMAP folder(s) and NNTP newsgroup(s).