Differences between revisions 1 and 2
Revision 1 as of 2018-02-26 06:02:14
Size: 2235
Editor: eSyr
Comment: initial import
Revision 2 as of 2018-02-26 08:30:56
Size: 2305
Editor: eSyr
Comment: reformat to moin syntax, update mailing list URL, add gitlab repo URL
Deletions are marked like this. Additions are marked like this.
Line 1: Line 1:
#format text_markdown

##
Guide for New Contributors
= Guide for New Contributors =
Line 7: Line 5:
###Getting Started == Getting Started ==
Line 9: Line 7:
* All communication is done through a single mailing list. Click [here](https://lists.sourceforge.net/lists/listinfo/strace-devel) to subscribe.
While posting to the mailing, please make sure that you,
   1. only send text emails—no HTML allowed;
    1. do not top post;
    1. use and abuse the mailing list archive to see how proper discussions are handled;
   1. be patient, a reply may need a week to come by.
* Get the code. You can download the repo using the command
    `git clone https://github.com/strace/strace`
* Build instructions
    `
./bootstrap`
    `
./configure`
    `
make`
    `
make check`
    `
make install`
    
For a detailed explanation, read the `INSTALL` and `README-hacking` files.
 * All communication is done through a single mailing list. Click [[https://lists.strace.io/mailman/listinfo/strace-devel|here]] to subscribe.
 * While posting to the mailing, please make sure that you,
  1. only send text emails—no HTML allowed;
  1. do not top post;
  1. use and abuse the mailing list archive to see how proper discussions are handled;
  1. be patient, a reply may need a week to come by.
 * Get the code. You can download the repo using the command
  . `git clone https://github.com/strace/strace`
  . ''Or use the alternative repository URL:'' `git clone https://gitlab.com/strace/strace.git`
 
* Build instructions:
  . {{{
./bootstrap
./configure
make
make check
make install
}}}
  .
For a detailed explanation, read the `INSTALL` and `README-hacking` files.
Line 25: Line 26:
###How to Submit a Patch == How to Submit a Patch ==
Line 27: Line 28:
* After making all the desired changes to the files, you have to stage the commit (read about [git staging](https://githowto.com/staging_and_committing) area):
    `git add *`
    Or use `git add -i` for the interactive work with the index.
* Once you have staged the files, commit the changes
    `git commit`
   
Provide a commit message in accordance with guidelines outlined in `README-hacking`.
* Next, create a patch file containing the commit.
    To create a patch of only a single commit
    `git format-patch -1 <commit> --author= "<Your Name>" --reroll-count=<version number>`
    To create a patch of all the commits after a certain commit (`origin/master`, for example):
    `git format-patch <commit> --author= "<Your Name>" --reroll-count=<version number>`
* You are advised to process the patches through the [`scripts/checkpatch.pl` script from the Linux kernel repository](https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/tree/scripts/checkpatch.pl) in order to catch common formatting mistakes in advance.
* Your patch file is ready now. The last step is to send it to the mailing-list for review (and merge).
    It is advisable to send the patch using `git send-mail`.
   
`git send-email --to="<mailing-list>" <patch-file>`
 * After making all the desired changes to the files, you have to stage the commit (read about [[https://githowto.com/staging_and_committing|git staging area]]):
  . `git add *`
  . Or use `git add -i` for the interactive work with the index.
 * Once you have staged the files, commit the changes
  . `git commit`
  .
Provide a commit message in accordance with guidelines outlined in `README-hacking`.
 * Next, create a patch file containing the commit.
  * To create a patch of only a single commit
   . `git format-patch -1 <commit> --author= "<Your Name>" --reroll-count=<version number>`
  * To create a patch of all the commits after a certain commit (`origin/master`, for example):
   . `git format-patch <commit> --author= "<Your Name>" --reroll-count=<version number>`
 * You are advised to process the patches through the `scripts/checkpatch.pl` script [[https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/tree/scripts/checkpatch.pl|from the Linux kernel repository]] in order to catch common formatting mistakes in advance.
 * Your patch file is ready now. The last step is to send it to the mailing-list for review
(and merge).
  * It is advisable to send the patch using `git send-mail`
:
   .
`git send-email --to="<mailing-list>" <patch-file>`

Guide for New Contributors

This wiki is aimed at guiding new contributors. Before starting, go through the below mentioned guidelines and steps.

Getting Started

  • All communication is done through a single mailing list. Click here to subscribe.

  • While posting to the mailing, please make sure that you,
    1. only send text emails—no HTML allowed;
    2. do not top post;
    3. use and abuse the mailing list archive to see how proper discussions are handled;
    4. be patient, a reply may need a week to come by.
  • Get the code. You can download the repo using the command
    • git clone https://github.com/strace/strace

    • Or use the alternative repository URL: git clone https://gitlab.com/strace/strace.git

  • Build instructions:
    • ./bootstrap
      ./configure
      make
      make check
      make install
    • For a detailed explanation, read the INSTALL and README-hacking files.

How to Submit a Patch

  • After making all the desired changes to the files, you have to stage the commit (read about git staging area):

    • git add *

    • Or use git add -i for the interactive work with the index.

  • Once you have staged the files, commit the changes
    • git commit

    • Provide a commit message in accordance with guidelines outlined in README-hacking.

  • Next, create a patch file containing the commit.
    • To create a patch of only a single commit
      • git format-patch -1 <commit> --author= "<Your Name>" --reroll-count=<version number>

    • To create a patch of all the commits after a certain commit (origin/master, for example):

      • git format-patch <commit> --author= "<Your Name>" --reroll-count=<version number>

  • You are advised to process the patches through the scripts/checkpatch.pl script from the Linux kernel repository in order to catch common formatting mistakes in advance.

  • Your patch file is ready now. The last step is to send it to the mailing-list for review (and merge).
    • It is advisable to send the patch using git send-mail:

      • git send-email --to="<mailing-list>" <patch-file>

NewContributorGuide (last edited 2023-04-29 12:43:48 by DmitryLevin)