Binder is a good demo environment for students to interact with Jupyter notebooks. It creates a standardized computing environment in the cloud. To practice version control, you'll need extra steps to bring your changes from the cloud to your local computer.
Programs you have:
- Terminal
- GitHub
- You have successfully forked the
simple-coronavirus-report
and made it your own
- You have successfully forked the
Programs you don't have:
- Docker
- ...MAKE ALL YOUR CHANGES...
- Launch a Terminal
- Type:
git status
to see which files you've made changes to - For every file you want to include in your commit: right click > download
- Move those downloaded files into your local GitHub repo
- In Ubuntu:
git status
to check that all those files are there, ready to be staged - Follow the GitHub workflow of pushing changes to the remote using
git add
,git commit
,git push