git 是否可以整合 Zeppelin 笔记?

Is it possible to integrate Zeppelin notes with git?

是否可以将 Zeppelin 笔记与 git 集成?可以设置存储库位置,但如何将其设置为远程 git 存储库。

但是,此功能在 Amazon EMR 上可用

是的。有可能

我用的是下面的方式

创建一个 github 存储库并推送所有笔记本。喜欢

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

克隆 github 回购到笔记本。

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