Skip to content

Latest commit

 

History

History
43 lines (30 loc) · 1.23 KB

File metadata and controls

43 lines (30 loc) · 1.23 KB

Contributing

Contributions are welcome, and they are greatly appreciated! Every little bit helps, and credit will always be given.

Getting Started

Setting up TextSentimentAnalysis for local development.

  1. Fork the TextSentimentAnalysis repo on GitHub.

  2. Clone your fork locally:

$ git clone https://github.com/your_username_here/TextSentimentAnalysis
  1. 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
  1. Create a branch from the last dev version of your tracking branch for local development:
$ git checkout -b name-of-your-bugfix-or-feature
  1. Install it locally:

  2. 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
  1. Submit a Pull Request on Github to the master branch.