本文介绍了是否可以将Zeppelin笔记与git集成?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
是否可以将Zeppelin笔记与git集成?可以设置存储库位置,但如何将其设置为远程git存储库.
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.
但是,此功能在Amazon EMR上可用
This functionality is however, available on Amazon EMR
推荐答案
是.有可能
我使用以下方式.
Yes. It's possible
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
将github存储库克隆到笔记本中.
cd zeppelin
git clone https://github.com/rockiey/zeppelin-notebooks.git notebook
如果齐柏林飞艇可以直接连接github存储库,那就太好了
It would be great if zeppelin can connect a github repo directly
这篇关于是否可以将Zeppelin笔记与git集成?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!