From e20ba2c2714ff0f64e6a001150eca2a467f39c44 Mon Sep 17 00:00:00 2001 From: "Abinoam P. Marques Jr." Date: Mon, 26 Sep 2011 23:45:08 -0300 Subject: [PATCH 1/3] Changing git url for Free-Friendika --- doc/Developers.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/Developers.md b/doc/Developers.md index ebfaf97c38..744a76a8b1 100644 --- a/doc/Developers.md +++ b/doc/Developers.md @@ -7,7 +7,7 @@ doing development. Create your own github account. -You may fork/clone the Friendika repository from [https://github.com/friendika/friendika.git](https://github.com/friendika/friendika.git). +You may fork/clone the Friendika repository from [https://github.com/friendika/Free-Friendika.git](https://github.com/friendika/Free-Friendika.git). Follow the instructions provided here: [http://help.github.com/fork-a-repo/](http://help.github.com/fork-a-repo/) to create and use your own tracking fork on github From c52ef0857874026d823259a584f4a6c19c257a1b Mon Sep 17 00:00:00 2001 From: "Abinoam P. Marques Jr." Date: Mon, 26 Sep 2011 23:51:46 -0300 Subject: [PATCH 2/3] Changing the git url to Free-Friendika at Install.md. It's lacking addon install instruction. --- doc/Install.md | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/doc/Install.md b/doc/Install.md index 3538d7bfa3..f650c1e557 100644 --- a/doc/Install.md +++ b/doc/Install.md @@ -36,13 +36,11 @@ you might have trouble getting everything to work.] - If you are able to do so, we recommend using git to clone the source repository rather than to use a packaged tar or zip file. This makes the software much easier to update. The Linux command to clone the repository into a directory "mywebsite" would be - `git clone http://github.com/friendika/friendika.git mywebsite` + `git clone https://github.com/friendika/Free-Friendika.git mywebsite` and then you can pick up the latest changes at any time with `git pull` - - - If you copy the directory tree to your webserver, make sure that you also copy .htaccess - as "dot" files are often hidden From 7f6e5074575dffec8d3570da48bf75bb2a8d7fac Mon Sep 17 00:00:00 2001 From: "Abinoam P. Marques Jr." Date: Tue, 27 Sep 2011 00:18:08 -0300 Subject: [PATCH 3/3] Added addon installation instruction. Exclusive repo. --- doc/Install.md | 24 ++++++++++++++++++++---- 1 file changed, 20 insertions(+), 4 deletions(-) diff --git a/doc/Install.md b/doc/Install.md index f650c1e557..b5ab1ef6fb 100644 --- a/doc/Install.md +++ b/doc/Install.md @@ -36,12 +36,28 @@ you might have trouble getting everything to work.] - If you are able to do so, we recommend using git to clone the source repository rather than to use a packaged tar or zip file. This makes the software much easier to update. The Linux command to clone the repository into a directory "mywebsite" would be - `git clone https://github.com/friendika/Free-Friendika.git mywebsite` + `git clone https://github.com/friendika/Free-Friendika.git mywebsite` - and then you can pick up the latest changes at any time with + - and then you can pick up the latest changes at any time with - `git pull` - + `git pull` + + - For installing addons + + - First you should be **on** your website folder + + `cd mywebsite` + + - Then you should clone the addon repository (separtely) + + `git clone https://github.com/friendika/friendika-addons.git addon` + + - For keeping the addon tree updated, you should be on you addon tree and issue a git pull + + `cd mywebsite/addon` + + `git pull` + - If you copy the directory tree to your webserver, make sure that you also copy .htaccess - as "dot" files are often hidden and aren't normally copied.