Repository for pushing codes and notebooks related to Machine Learning.
- Create your seperate folder with any name that you want.
- You can use your folder to store notebooks, create sub-folders and manage it.
- You can use both Git Bash or Github website. ( Though bash terminal is recommended )
Working on your first Pull Request? You can learn from this video or this series
- Fork the repository
- Clone your own forked repo :
$ git clone https://github.com/<user_name>/ML-Notebooks.git
$ cd ML-Notebooks
- Create your new branch :
$ git checkout -b branch-name
- Make changes in the files or add your files.
- Add changes :
$ git add .
- Make a commit :
$ git commit -m commit-message
( Commit message could be a short line description for your changes ) - Push your changes :
$ git push origin branch-name
- Compare your changes and submit a Pull Request.