Skip to content
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
10 changes: 10 additions & 0 deletions contribute/CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,16 @@ And that's pretty much it ! You are now ready to get started.

## 2. Getting Started

### Prerequisite : Git LF/CRLF configuration (for Windows users)

By default, Git on Windows may convert line endings (LF → CRLF). The whole IroCO2 project was configured to work with LF end-of-line. To avoid unwanted conversions, run one of the following:

```bash
git config --system core.autocrlf false # per-system
git config --global core.autocrlf false # per-user
git config --local core.autocrlf false # per-project
```

### 2.1. For external contributors

We use the [Forking Workflow](https://www.atlassian.com/git/tutorials/comparing-workflows/forking-workflow), used in
Expand Down