Hey I'm trying to push a one-line change, but I ge...
# contribute-code
g
Hey I'm trying to push a one-line change, but I get a permissions issue when trying to push a new branch. I'm sure there's some process I'm not realizing here, this is the first time I've tried to contribute to an open-source project. There is just a small issue in the quickstart file:
Copy code
- curl -sS --fail '<http://localhost:9200/_cluster/health?wait_for_status=yellow&timeout=0s>' 
|| exit 1
It's just a formatting issue - the '|| exit 1' is on a new line instead of being on the same line , here is the Github issue: https://github.com/datahub-project/datahub/issues/7255
1
c
Hi @gentle-lifeguard-88494 usually you need to fork a repository and file the pr based on your fork to the original project That's how contributing for the the vast majority of open source projects works as long as you are not part of the project team 🙂
g
@mysterious-optician-34112 Awesome, thank you!