Stream: dotnet
Topic: First Contribution
Shaun (Jan 10 2019 at 08:15):
Hi,
I would like to contribute to the .Net library but am not sure where or how to start. I am a seasoned developer but not so sure (even after reading the branching strategy) if I can just branch off of Develop, change something and do a RP. Or is it that simple?
Kenneth Myhra (Jan 10 2019 at 08:30):
You branch off from develop, which is DSTU2 and issue a PR based on that. Changes on the develop branch will eventually be forwarded to the respective branches for STU3 and R4.
Shaun (Jan 10 2019 at 08:48):
Thx!
Shaun (Jan 10 2019 at 09:32):
I cant seem to push my branch. I get a 403. Any reason other than me being stupid?
Kenneth Myhra (Jan 10 2019 at 10:00):
Fork the repository, push the branch to your fork, then create a PR. GitHub should then if I remember correctly help you by listing the branches from your fork.
Kenneth Myhra (Jan 10 2019 at 10:12):
Not sure how familiar you are with git so I am just adding this here. After you have forked you can use git remote add
to add a new remote to your local repo. I.e: git remote add dev-repo https://github.com/username/fhir-net-api.git
Last updated: Apr 12 2022 at 19:14 UTC