cancel
Showing results forย 
Search instead forย 
Did you mean:ย 
Data Engineering
Join discussions on data engineering best practices, architectures, and optimization strategies within the Databricks Community. Exchange insights and solutions with fellow data engineers.
cancel
Showing results forย 
Search instead forย 
Did you mean:ย 

github to adb workspace linkage

suman_gypsy
New Contributor

i have a workspace in my adb and in that workspace i have folder contains lots of notebook , for backup purpoe i want to copy all the notebook in my github repo, how can i do that in one shot ?

2 REPLIES 2

Anonymous
Not applicable

@suman mukherjeeโ€‹ :

Create a new repository on GitHub where you want to store your notebooks. Then use the below commands in the terminal after you install git.

git init
git add . -> this is to Add all the notebooks in your workspace to the Git repository
git commit -m "Initial commit" -> commit the changes
git remote add origin <repository URL> 
git push -u origin master -> This command pushes the changes to the master branch of the remote repository.
 
 
 

Anonymous
Not applicable

Hi @suman mukherjeeโ€‹ 

Thank you for your question! To assist you better, please take a moment to review the answer and let me know if it best fits your needs.

Please help us select the best solution by clicking on "Select As Best" if it does.

Your feedback will help us ensure that we are providing the best possible service to you. Thank you!

Connect with Databricks Users in Your Area

Join a Regional User Group to connect with local Databricks users. Events will be happening in your city, and you wonโ€™t want to miss the chance to attend and share knowledge.

If there isnโ€™t a group near you, start one and help create a community that brings people together.

Request a New Group