From 8186b4415d53beb888a255bc78ad5b9baba0c8bf Mon Sep 17 00:00:00 2001 From: Ellis Percival Date: Wed, 10 Feb 2016 18:21:02 +0000 Subject: [PATCH] Fix git URLs and order of execution in developer guide bash commands. --- source/developers/index.markdown | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/developers/index.markdown b/source/developers/index.markdown index 774470f2240..02524771283 100644 --- a/source/developers/index.markdown +++ b/source/developers/index.markdown @@ -22,9 +22,9 @@ Home Assistant is open-source and MIT licensed. The source can be found here: You will need to setup a development environment if you want to start developing a new feature or component for Home Assistant. Please follow these steps to perform it. Visit the [the Home Assistant repository](https://github.com/balloob/home-assistant) first and click fork in the top right. ```bash -$ git clone https://github.com/your_github_username/home-assistant.git -$ git remote add upstream git@github.com:balloob/home-assistant.git +$ git clone git@github.com:your_github_username/home-assistant.git $ cd home-assistant +$ git remote add upstream https://github.com/balloob/home-assistant.git $ script/setup ```