https://github.com/umar221b/nba_bracket_challenge
A collection of programs that try to predict the final NBA playoff bracket along with the length of each series.
https://github.com/umar221b/nba_bracket_challenge
Last synced: 10 months ago
JSON representation
A collection of programs that try to predict the final NBA playoff bracket along with the length of each series.
- Host: GitHub
- URL: https://github.com/umar221b/nba_bracket_challenge
- Owner: umar221b
- Created: 2019-11-12T19:11:20.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2020-02-09T23:47:32.000Z (over 6 years ago)
- Last Synced: 2025-07-21T23:48:18.293Z (11 months ago)
- Language: Jupyter Notebook
- Homepage:
- Size: 3.7 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# NBA Bracket Challenge
**To create and push a feature:**
- Create a feature branch from develop:
- Make sure you are on develop first: `git checkout develop`.
- Create a feature branch: `git checkout -b feature/feature_name`, replace feature_name with a descriptive but short name for your feature.
- Do your work on the created branch, and commit your changes in small chunks of related changes. Do not make commits too big.
- When the feature is done and functioning without problems, push it to github using: `git push origin feature_branch_name`, replace feature_branch_name with the name of the feature branch.
- Create a pull request to merge that branch to develop:
- **Select develop as the base branch.**
- Select your branch as the compare branch.
- Save the pull request and request review from team members.
**To review someone's feature:**
Either see the changes on Github or pull the changes to your local machine as follows:
- After they push their branch and create a pull request, run the following command on your local machine to make your repository up to date with the remote repository on github: `git fetch`.
- Run `git pull origin feature_branch_name`, replace feature_branch_name with the name of the feature branch.
- Switch to the new branch: `git checkout feature_branch_name`, replace feature_branch_name with the name of the feature branch.
- You know have their code locally, you can look through it as you like.
- When ready, give your review on github by either approving the changes or requesting changes.