Skip to content
This repository was archived by the owner on Nov 19, 2022. It is now read-only.

implement-an-exercise-from-specification: Remove avoiding duplicate work section. #108

Merged
merged 1 commit into from
Nov 5, 2017
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 0 additions & 18 deletions you-can-help/implement-an-exercise-from-specification.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,24 +45,6 @@ For every exercise it will link to:
- The canonical data (if it exists).
- All the individual language implementations.

## Avoiding Duplicate Work

When you decide to implement an exercise, first check that there are no open pull requests
for the same exercise.

Then open a "work in progress" (WIP) pull request, so others will see that you're working on it.

The way to open a WIP pull request even if you haven't done any work yet is:

* Fork and clone the repository.
* Check out a branch for the exercise.
* Add an empty commit `git commit --allow-empty -m "Implement exercise <slug>"`
(replace <slug> with the actual name of the exercise).
* Push the new branch to your repository, and open a pull request against that branch.

Once you have added the actual exercise, then you can rebase your branch onto the upstream
master, which will make the WIP commit go away.

## Implementing the Exercise

You'll need to find the `slug` for the exercise. That's the URL-friendly identifier
Expand Down