StreamStory β The New Beginning
We welcome contributions! To get started, please follow the steps below:
Click the Fork button on the main repository to create your own copy.
git clone https://github.com/<your-username>/StreamStory2.git
cd StreamStory2
git remote add upstream https://github.com/JozefStefanInstitute/StreamStory2.git
git checkout main
git pull upstream main
git checkout -b my-new-feature
git add .
git commit -m "Describe your changes here"
git push origin my-new-feature
Go to your fork on GitHub and click "Compare & pull request". Submit your pull request from my-new-feature
to the upstream main
branch.
Once your pull request has been merged, you may delete the feature branch:
git branch -d my-new-feature
Repeat steps 3β7 for each new contribution.