Skip to content

Latest commit

 

History

History
26 lines (24 loc) · 683 Bytes

CONTRIBUTING.md

File metadata and controls

26 lines (24 loc) · 683 Bytes

Contributing

Guide below will explain the process of submitting a pull request (PR).

  1. Fork it.
  2. Clone your forked project:
    git clone http://github.com/<your_github_username>/plex_autoscan
    
  3. Create a feature branch off of the develop branch:
    git checkout -b 'feature/my-new-feature' develop
    
  4. Keep up to date with latest develop branch changes:
    git pull --rebase upstream develop
    
  5. Commit your changes:
    git commit -am 'Added some feature'
    
  6. Push commits to the feature branch:
    git push origin feature/my-new-feature
    
  7. Submit feature branch as a PR to our develop branch.