Github user AhyoungRyu commented on the issue:
https://github.com/apache/zeppelin/pull/1044
@davidtzoor I'm not sure what you missed, your local master branch seems
quite outdated. Zeppelin follows [fork &
pull](https://github.com/apache/zeppelin/blob/master/CONTRIBUTING.md#source-control-workflow)
model as a source control workflow.
##### 1. In your forked local repository
```
git checkout master
```
##### 2. set upstream and update local master
```
git remote add upstream git://github.com/apache/zeppelin.git
git fetch upstream
git pull upstream master
```
##### 3. rebase your branch `forcelayout` with latest master
```
git checkout forcelayout
git rebase master
```
Did you do as the above steps?
---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at [email protected] or file a JIRA ticket
with INFRA.
---