Deloitte AI Academy Intensive and Apprenticeship course materials for 02/12/24 cohort. It was made with ❤️ by Flatiron School
We will be going through these instuctions several times during the first week or so of class - no rush!
-
FORK this repository, creating a copy of the repository (or 'repo' aka folder) on your own GitHub account (creates a personal duplicate only online)
-
Then clone your fork down to your local computer (this will copy your fork onto to your local machine)
git clone https://github.com/[yourusername]/dsc-DeloitteAIA-021224-A.git
- Add the
/flatiron-school/
version as the upstream (to pull future changes JP makes into your own copy)
git remote add upstream https://github.com/flatiron-school/dsc-DeloitteAIA-021224-A.git
- You can make changes to the notebooks now! Remember to push your changes to your forked version of the repo (to save your local changes online):
git add [filename]
git commit -m 'message here'
git push
Whenever you want to get updated notes:
- Grab the changes from the upstream repo
git fetch upstream
- Merge new changes onto your local repo
git merge upstream/master -m "meaningful message about what you're updating"
For example, you might write a message like "incorporating newest changes/updates from upstream".