github to adb workspace linkage
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-11-2023 09:15 AM
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 ?
- Labels:
-
Github Repo
-
Workspace
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-07-2023 10:56 PM
@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.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-08-2023 11:57 PM
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!