StreamStory - the new beginning.
- Fork the repository.
- 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
- Synchronize your local
main
branch with the upstream one:
git checkout main
git pull upstream main
- Create a new feature branch:
git checkout -b new-feature-branch
- Make changes, commit and push to your fork:
git push origin new-feature-branch
-
Go to your StreamStory2 fork, click "Compare & pull request" and create new pull request from your
new-feature-branch
to upstreammain
branch. -
After pull request is accepted, you can delete
new-feature-branch
.
Repeat steps 3 - 7 for every new contribution.