From f89b3f0f681c41a249d793adb0d1d5eb15143f3b Mon Sep 17 00:00:00 2001 From: Kevin Keraudren Date: Fri, 6 May 2016 10:05:47 +0100 Subject: [PATCH 1/2] adding details about github SSH keys in contributing page --- .github/CONTRIBUTING.txt | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/.github/CONTRIBUTING.txt b/.github/CONTRIBUTING.txt index cd13445a..1609b95d 100644 --- a/.github/CONTRIBUTING.txt +++ b/.github/CONTRIBUTING.txt @@ -13,9 +13,16 @@ Here's the long and short of it: git clone git@github.com:your-username/scikit-image.git - * Add the upstream repository:: + * Add the upstream repository: - git remote add upstream git@github.com:scikit-image/scikit-image.git + - If you have set up your `github SSH keys + `_:: + + git clone git@github.com:your-username/scikit-image.git + + - Otherwise:: + + git remote add upstream https://github.com/scikit-image/scikit-image.git * Now, you have remote repositories named: From 33ef46b9fdf2ca15164287ae07c9c10c86556358 Mon Sep 17 00:00:00 2001 From: Kevin Keraudren Date: Fri, 6 May 2016 10:56:07 +0100 Subject: [PATCH 2/2] I messed up the original git remote add command line --- .github/CONTRIBUTING.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/CONTRIBUTING.txt b/.github/CONTRIBUTING.txt index 1609b95d..3d183307 100644 --- a/.github/CONTRIBUTING.txt +++ b/.github/CONTRIBUTING.txt @@ -18,7 +18,7 @@ Here's the long and short of it: - If you have set up your `github SSH keys `_:: - git clone git@github.com:your-username/scikit-image.git + git remote add upstream git@github.com:scikit-image/scikit-image.git - Otherwise::