2.4. 使用命令行界面从 Git 存储库上传现有的笔记本文件
您可以使用命令行界面将 Git 存储库克隆到工作区,以继续工作或从外部项目集成文件。
先决条件
- 启动并运行 Jupyter 服务器。
流程
复制 Git 存储库的 HTTPS URL。
-
在 GitHub 中,点击 zfcp Code
HTTPS,然后点击 Clipboard 按钮。 - 在 GitLab 上,单击 Clone,再单击 Clone with HTTPS 下的 Clipboard 按钮。
-
在 GitHub 中,点击 zfcp Code
-
在 JupyterLab 中,点击 File
New Terminal 打开终端窗口。 进入
git clone
命令。git clone git-clone-URL
使用 HTTPS URL 替换 git-clone-URL,例如:
[1234567890@jupyter-nb-jdoe ~]$ git clone https://github.com/example/myrepo.git Cloning into myrepo... remote: Enumerating objects: 11, done. remote: Counting objects: 100% (11/11), done. remote: Compressing objects: 100% (10/10), done. remote: Total 2821 (delta 1), reused 5 (delta 1), pack-reused 2810 Receiving objects: 100% (2821/2821), 39.17 MiB | 23.89 MiB/s, done. Resolving deltas: 100% (1416/1416), done.
验证
- 检查存储库的内容是否在 JupyterLab 中的文件浏览器中看到,或者在终端中运行 ls 命令,以验证存储库是否显示为一个目录。