Skip to content

Commit

Permalink
Merge pull request #330 from santoshborse/readme-update-1
Browse files Browse the repository at this point in the history
Corrected Readme to update file path, added more detail signoff steps
  • Loading branch information
daw3rd authored Jun 24, 2024
2 parents 5aace3a + 6e0e86e commit 9b611fc
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 4 deletions.
11 changes: 8 additions & 3 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,11 +61,16 @@ submitter accepts the DCO:
Signed-off-by: John Doe <[email protected]>
```

You can include this automatically when you commit a change to your
local git repository using the following command:
To include Signed-off-by message automatically, set the git config as,
```
git config user.name "FirstName LastName"
git config user.email "[email protected]"
```

and include flag `-s | --sign-off` when you commit a change to your local git repository, for example

```
git commit -s
git commit -s -m "your commit message"
```

## Overall Setup
Expand Down
2 changes: 1 addition & 1 deletion data-processing-lib/doc/simplest-transform-tutorial.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ Finally, we show how to use the command line to run the transform in a local ray

First, let's define the transform class. To do this we extend
the base abstract/interface class
[`AbstractTableTransform`](../ray/src/data_processing_ibm/transform/table_transform.py),
[`AbstractTableTransform`](../python/src/data_processing/transform/table_transform.py),
which requires definition of the following:

* an initializer (i.e. `init()`) that accepts a dictionary of configuration
Expand Down

0 comments on commit 9b611fc

Please sign in to comment.