Contributions are welcome, and they are greatly appreciated! Every little bit helps, and credit will always be given.
Setting up TextSentimentAnalysis for local development.
-
Fork the TextSentimentAnalysis repo on GitHub.
-
Clone your fork locally:
$ git clone https://github.com/your_username_here/TextSentimentAnalysis- Add a tracking branch which can always have the latest version of TextSentimentAnalysis.
$ git remote add TextSentimentAnalysis https://github.com/khanfarhan10/TextSentimentAnalysis
$ git fetch TextSentimentAnalysis
$ git branch TextSentimentAnalysis-master --track TextSentimentAnalysis/master
$ git checkout TextSentimentAnalysis
$ git pull- Create a branch from the last dev version of your tracking branch for local development:
$ git checkout -b name-of-your-bugfix-or-feature-
Install it locally:
- Check Setting up section in README.md
-
Now make your changes locally:
$ git add .
$ git commit -m "Your detailed description of your changes."
$ git push -u origin name-of-your-bugfix-or-feature- Submit a Pull Request on Github to the
masterbranch.