From 0a8010bf1751e6000cd145ad7bd8a88ceca3c42d Mon Sep 17 00:00:00 2001 From: Bernhard Posselt Date: Mon, 18 Mar 2013 15:17:19 +0100 Subject: [PATCH] added update on git git submodules --- developer_manual/app/intro/gettingstarted.rst | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/developer_manual/app/intro/gettingstarted.rst b/developer_manual/app/intro/gettingstarted.rst index 7dc7677f6..d579f3af2 100644 --- a/developer_manual/app/intro/gettingstarted.rst +++ b/developer_manual/app/intro/gettingstarted.rst @@ -44,11 +44,13 @@ and the apache user and group for the **chown** command will either be cd /var/www git clone https://github.com/owncloud/core.git owncloud git clone https://github.com/owncloud/apps.git apps - git clone https://github.com/owncloud/3rdparty.git 3rdparty - mkdir owncloud/data - sudo chown -R www-data:www-data owncloud/config - sudo chown -R www-data:www-data owncloud/data - sudo chown -R www-data:www-data owncloud/apps + cd owncloud/ + git submodule init + git submodule update + mkdir data + sudo chown -R www-data:www-data config/ + sudo chown -R www-data:www-data data/ + sudo chown -R www-data:www-data apps/ sudo chmod -R o-rw /var/www Now restart the apache server and get ready to `set up ownCloud`_ at http://localhost/owncloud.