本文介绍了是否可以将 Zeppelin 笔记与 git 集成?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
是否可以将 Zeppelin 笔记与 git 集成?可以设置存储库位置,但如何将其设置为远程 git 存储库.
但是,此功能在 Amazon EMR 上可用
解决方案
是的.有可能
我使用以下方式.
创建一个 github repo 并推送所有笔记本.喜欢
git clone https://github.com/rockiey/zeppelin-notebooks.gitcd zeppelin-notebookscp -rf ../zeppelin/notebook/* .git add -Agit commit -m "init"推
删除笔记本目录
cd 齐柏林飞艇rm -rf 笔记本
将 github 存储库克隆到笔记本.
cd 齐柏林飞艇git clone https://github.com/rockiey/zeppelin-notebooks.git notebook
虽然我仍然需要手动推送到github
如果zeppelin 可以直接连接github repo 就好了
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
解决方案
Yes. It's possible
I use following way.
Create a github repo and push all note book. like
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
Delete notebook directory
cd zeppelin
rm -rf notebook
Clone github repo to notebook.
cd zeppelin
git clone https://github.com/rockiey/zeppelin-notebooks.git notebook
这篇关于是否可以将 Zeppelin 笔记与 git 集成?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!