Skip to content

Latest commit

 

History

History
39 lines (26 loc) · 895 Bytes

README.md

File metadata and controls

39 lines (26 loc) · 895 Bytes

StreamStory2

StreamStory - the new beginning.

Contributing

  1. Fork the repository.
  2. Clone the fork to your local machine and add upstream remote:
git clone https://github.com/<your username>/StreamStory2.git
cd StreamStory2
git remote add upstream https://github.com/JozefStefanInstitute/StreamStory2.git
  1. Synchronize your local main branch with the upstream one:
git checkout main
git pull upstream main
  1. Create a new feature branch:
git checkout -b new-feature-branch
  1. Make changes, commit and push to your fork:
git push origin new-feature-branch
  1. Go to your StreamStory2 fork, click "Compare & pull request" and create new pull request from your new-feature-branch to upstream main branch.

  2. After pull request is accepted, you can delete new-feature-branch.

Repeat steps 3 - 7 for every new contribution.