Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: CONTRIBUTING with project name #53

Merged
merged 1 commit into from
Apr 26, 2022
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
16 changes: 8 additions & 8 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -1,28 +1,28 @@
# Contributing to [PROJECT'S NAME]
# Contributing to InterPlanetaryCloud

## Create an issue

- If you've encountered a bug, open a [Bug Report](https://github.com/PoCInnovation/$REPOSITORY/issues/new?assignees=&labels=&template=bug_report.md&title=).
- If you want [PROJECT'S NAME] to have a new fonctionality, open a [Feature Request](https://github.com/PoCInnovation/$REPOSITORY/issues/new?assignees=&labels=&template=feature_request.md&title=).
- If you've encountered a bug, open a [Bug Report](https://github.com/PoCInnovation/InterPlanetaryCloud/issues/new?assignees=&labels=&template=bug_report.md&title=).
- If you want InterPlanetaryCloud to have a new fonctionality, open a [Feature Request](https://github.com/PoCInnovation/InterPlanetaryCloud/issues/new?assignees=&labels=&template=feature_request.md&title=).

## Resolve an issue

Select an [issue](https://github.com/PoCInnovation/$REPOSITORY/issues) that you want to resolve.
Select an [issue](https://github.com/PoCInnovation/InterPlanetaryCloud/issues) that you want to resolve.

The recommended workflow is to fork this repository and open pull requests from your fork.

### 1. Fork, clone & configure [PROJECT'S NAME] upstream
### 1. Fork, clone & configure InterPlanetaryCloud upstream

- Click on the _Fork_ button on GitHub
- Clone the original repository
- Add your repository as a new remote

```sh
# Clone original repository
git clone [email protected]:PoCInnovation/$REPOSITORY.git
git clone [email protected]:PoCInnovation/InterPlanetaryCloud.git

# Add your fork as a remove
git remote add <fork_name> https://github.com/$YOUR_GITHUB_USER/$REPOSITORY.git
git remote add <fork_name> https://github.com/$YOUR_GITHUB_USER/InterPlanetaryCloud.git
```

### 2. Create a pull request
Expand All @@ -40,7 +40,7 @@ git commit -s
# Push your new branch
git push <fork name>

# Create a new pull request from https://github.com/PoCInnovation/$REPOSITORY/pulls
# Create a new pull request from https://github.com/PoCInnovation/InterPlanetaryCloud/pulls
```

### 3. Update your pull request with latest changes
Expand Down