-
Notifications
You must be signed in to change notification settings - Fork 0
Github Tutorial
Git is an online versioning tool that allows Data Science Dojo to continually push new content and issue patches to our course material. In the future, if DataScienceDojo offers new modules, alumni who are still subscribed to our repository may continue to receive these updates.
The git clients for different operating systems can be downloaded at git-scm.com.
After installing Git in your computer, you should set up your git by following the by adding your user name and email associated with your GitHub account.
Open the Terminal (for Linux and Mac), or Git Bash(for Windows)
$ git config --global user.name "John Doe"
$ git config --global user.email [email protected]
To clone the bootcamp repo over HTTPs, what you need to do is:
- Open the Terminal (for Linux and Mac), or Git Bash(for Windows)
- Navigate to the directory where you want to put this repo, using
cd [MyBootCampFolderFilePath]
$ git clone https://github.com/datasciencedojo/bootcamp.git
(A video tutorial of "clone" can be found at Youtube)
Data Science Dojo regularly update the contents in [the bootcamp repo] (https://github.com/datasciencedojo/bootcamp). To synchronize your local bootcamp repo to the newest version:
- Open the Terminal (for Linux and Mac), or Git Shell (for Windows)
- Navigate to the directory of your local DSD bootcamp repo
cd [MyBootCampFolderFilePath]/bootcamp
$ git pull origin master