From 4b81bc8b402207b422c32125cb84d7b741fd049a Mon Sep 17 00:00:00 2001
From: Laurent Modolo <laurent.modolo@ens-lyon.fr>
Date: Thu, 7 Jun 2018 13:30:23 +0200
Subject: [PATCH] README.md : add infos on forking and syncing

---
 README.md | 9 ++++++++-
 1 file changed, 8 insertions(+), 1 deletion(-)

diff --git a/README.md b/README.md
index d94e765..6f07ab7 100644
--- a/README.md
+++ b/README.md
@@ -1,6 +1,13 @@
 # nextflow pipeline
 
 This repository is a template and a library repository to help you build nextflow pipeline.
+You can fork this repository to build your own pipeline.
+To get the last commits from this repository into your fork use the following commands:
+
+```sh
+git remote add upstream https://gitlab.biologie.ens-lyon.fr/pipelines/nextflow.git
+git pull upstream master
+```
 
 ## Getting Started
 
@@ -47,7 +54,7 @@ find src/docker_modules/ -name "docker_init.sh" | awk '{system($0)}'
 
 ## Running the tests
 
-To run tests we first need to get a trainning set
+To run tests we first need to get a training set
 ```sh
 cd data
 git clone -c http.sslVerify=false https://gitlab.biologie.ens-lyon.fr/LBMC/tiny_dataset.git
-- 
GitLab