I can connect with my instance through datalab connect sample-lab
, how to pull my notebooks in?
Asked
Active
Viewed 760 times
5

kporcelainluv
- 53
- 3
1 Answers
5
You can use the built-in ungit
client. Click on its icon in the top right toolbar, it looks like this: . This wil take you to the ungit interface, where you can clone your notebooks from any github address.
Alternatively, you can clone them from any notebook cell by running a bash command:
!git clone https://github.com/my/notebooks/repo

yelsayed
- 5,236
- 3
- 27
- 38
-
1Thank you, I watched "Intro to ungit" and managed to clone my repo. – kporcelainluv Apr 13 '17 at 22:38