Code Contribution
Overview
The recommended Github workflow here is for developers to submit code and documentation contributions to Inji open-source repositories.
Repositories
Setup your development machine
Fork the repository.
Clone the fork to your local machine. E.g.:
$ git clone https://github.com/<your_github_id>/inji.git
Set the upstream project as the original from where you forked. E.g.:
$ cd inji $ git remote add upstream https://github.com/mosip/inji.git
Make sure you never directly push upstream.
$ git remote set-url --push upstream no_push
Confirm the origin and upstream.
$ git remote -v
This should display origin and upstream as below:
origin https://github.com/<your_github_id>/inji.git (fetch) origin https://github.com/<your_github_id>/inji.git (push) upstream https://github.com/mosip/inji.git (fetch) upstream https://github.com/mosip/inji.git (push)
Code changes
1. Create a new issue in GitHub.
Follow the issue template provided.
Please provide as much information as possible.
If you want to develop a new feature, please elaborate on the idea and discuss the design before starting development. 2. In your local repository, fetch the upstream.
$ git fetch upstream
3. On your local repo, switch to a branch if you are working on an older release or stay in main/develop
branch.
$ git checkout upstream/<branch>
4. Create a new issue branch with the name of the issue.
$ git switch -c issue-<issue number>
5. Make sure you are up-to-date with the upstream repo.
$ git pull upstream <branch>
6. Now feel free to make the change in the code or documentation. Reach out to our community for any queries. Once done with the work, commit your changes by referring to the Issue ID in the commit message. Eg:
$ git commit -m "[#1234] Adding new feature in inji module"
7. Once again ensure that you are up-to-date with the upstream repo as it may have moved forward.
$ git pull upstream <branch>
8. Build and test your code. Make sure to follow the coding guidelines. Provide unit test cases for the changes you have built.
9. Push to your forked repo (origin).
$ git push --set-upstream origin issue-<issue number>
10. On your forked remote repository from GitHub, create a pull request using the Contribute button. Direct the pull-request to main
or any specific branch upstream.
11. Make sure the automatic tests/checks on GitHub for your pull request pass.
12. Reviewers shall review the pull request. Reach out to the community for a faster response.
Last updated
Was this helpful?