Is it possible to integrate Zeppelin notes with git? One can set the repository location but how to set that to a remote git repository.
This functionality is however, available on Amazon EMR
Is it possible to integrate Zeppelin notes with git? One can set the repository location but how to set that to a remote git repository.
This functionality is however, available on Amazon EMR
I use following way.
git clone https://github.com/rockiey/zeppelin-notebooks.git cd zeppelin-notebooks cp -rf ../zeppelin/notebook/* . git add -A git commit -m "init" git push
cd zeppelin rm -rf notebook
cd zeppelin git clone https://github.com/rockiey/zeppelin-notebooks.git notebook
While I still need push to github manually
It would be great if zeppelin can connect a github repo directly