From 5c49b040aadd871ecaeeb3018b8840a66ddacce1 Mon Sep 17 00:00:00 2001
From: Lee moon soo
Date: Sun, 10 Jan 2016 08:38:40 -0800
Subject: [PATCH 1/3] Change repo url to apache git.apache.org from github.com
---
docs/index.md | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/docs/index.md b/docs/index.md
index 6919c5dcee5..1648f450830 100644
--- a/docs/index.md
+++ b/docs/index.md
@@ -117,7 +117,7 @@ This way, you can easily embed it as an iframe inside of your website.
### 100% Opensource
-Apache Zeppelin (incubating) is Apache2 Licensed software. Please check out the [source repository](https://github.com/apache/incubator-zeppelin) and [How to contribute](./development/howtocontribute.html)
+Apache Zeppelin (incubating) is Apache2 Licensed software. Please check out the [source repository](http://git.apache.org/incubator-zeppelin.git) and [How to contribute](./development/howtocontribute.html)
Zeppelin has a very active development community.
Join the [Mailing list](./community.html) and report issues on our [Issue tracker](https://issues.apache.org/jira/browse/ZEPPELIN).
From f4b2c9fde21e05a4de07678fc08838ab6200a011 Mon Sep 17 00:00:00 2001
From: Lee moon soo
Date: Sun, 10 Jan 2016 08:53:18 -0800
Subject: [PATCH 2/3] Fix CONTRIBUTING.md
---
CONTRIBUTING.md | 10 +++++-----
1 file changed, 5 insertions(+), 5 deletions(-)
diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md
index c53e35ec718..44c649ad472 100644
--- a/CONTRIBUTING.md
+++ b/CONTRIBUTING.md
@@ -68,7 +68,7 @@ Here are some things you will need to build and test Zeppelin.
### Software Configuration Management (SCM)
-Zeppelin uses Git for its SCM system. Hosted by github.com. `https://github.com/apache/incubator-zeppelin` you'll need git client installed in your development machine.
+Zeppelin uses Git for its SCM system. `http://git.apache.org/incubator-zeppelin.git` you'll need git client installed in your development machine.
### Integrated Development Environment (IDE)
@@ -114,26 +114,26 @@ To build the code, install
* Apache Maven
## Getting the source code
-First of all, you need the Zeppelin source code. The official location for Zeppelin is [https://github.com/apache/incubator-zeppelin](https://github.com/apache/incubator-zeppelin)
+First of all, you need the Zeppelin source code. The official location for Zeppelin is [http://git.apache.org/incubator-zeppelin.git](http://git.apache.org/incubator-zeppelin.git)
### git access
Get the source code on your development machine using git.
```
-git clone git@github.com:apache/incubator-zeppelin.git zeppelin
+git clone http://git.apache.org/incubator-zeppelin.git zeppelin
```
You may also want to develop against a specific release. For example, for branch-0.1
```
-git clone -b branch-0.1 git@github.com:apache/incubator-zeppelin.git zeppelin
+git clone -b branch-0.1 http://git.apache.org/incubator-zeppelin.git zeppelin
```
### Fork repository
-If you want not only build Zeppelin but also make change, then you need fork Zeppelin repository and make pull request.
+If you want not only build Zeppelin but also make change, then you need fork Zeppelin github mirror repository (https://github.com/apache/incubator-zeppelin) and make pull request.
## Build
From 9efcf0ef328892273fe4c0944babfc1f08d3a809 Mon Sep 17 00:00:00 2001
From: Lee moon soo
Date: Sun, 10 Jan 2016 18:53:00 -0800
Subject: [PATCH 3/3] Add write access git url
---
CONTRIBUTING.md | 8 +++++++-
1 file changed, 7 insertions(+), 1 deletion(-)
diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md
index 44c649ad472..e18ea1b88a2 100644
--- a/CONTRIBUTING.md
+++ b/CONTRIBUTING.md
@@ -69,6 +69,7 @@ Here are some things you will need to build and test Zeppelin.
### Software Configuration Management (SCM)
Zeppelin uses Git for its SCM system. `http://git.apache.org/incubator-zeppelin.git` you'll need git client installed in your development machine.
+For write access, `https://git-wip-us.apache.org/repos/asf/incubator-zeppelin.git`
### Integrated Development Environment (IDE)
@@ -114,7 +115,7 @@ To build the code, install
* Apache Maven
## Getting the source code
-First of all, you need the Zeppelin source code. The official location for Zeppelin is [http://git.apache.org/incubator-zeppelin.git](http://git.apache.org/incubator-zeppelin.git)
+First of all, you need the Zeppelin source code. The official location for Zeppelin is [http://git.apache.org/incubator-zeppelin.git](http://git.apache.org/incubator-zeppelin.git).
### git access
@@ -130,6 +131,11 @@ You may also want to develop against a specific release. For example, for branch
git clone -b branch-0.1 http://git.apache.org/incubator-zeppelin.git zeppelin
```
+or with write access
+
+```
+git clone https://git-wip-us.apache.org/repos/asf/incubator-zeppelin.git
+```
### Fork repository