Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: replaced broken link to issues tracker

...

Is there already an issue that addresses your concern? Do a bit of searching in our issue tracker to see if you can find something similar. If you do not find something similar, please create a new issue before submitting a pull request unless the change is truly trivial -- for example: typo fixes, removing compiler warnings, etc.

...

Develop currently represents work toward Apache Fineract 1.0.0. Please submit all pull requests there, even bug fixes and minor improvements.

Code Block
languagebash
git checkout develop

Use short branch names

Branches used when submitting pull requests should preferably be named according to issues prefixed FINERACT followed by a dash and the issue number, e.g. 'FINERACT-1234'. This is important, because branch names show up in the merge commits that result from accepting pull requests and should be as expressive and concise as possible.

Code Block
languagebash
git checkout -b [topic]

Pull in changes

Keep up to date

There will be development changes to both repositories almost every day for the foreseeable future so its important to keep your fork of the software up to date with the latest changes.

To pull in upstream changes from repository you forked:

Code Block
languagebash
git checkout develop
git fetch upstream
git merge upstream/develop
Warning

You should not have any local changes on your develop branch, if you do, use rebase!

Once you have pulled all latest changes and your build was successful, push the just merged changes to the develop branch on your fork.

Code Block
languagebash
git push origin develop

Rebasing your work

After you pulled all changes from upstream you need to rebase your topic branch with the latest code.

Code Block
languagebash
git checkout [topic]
git rebase develop

If you are ready push your topic branch to your GitHub account:

Code Block
languagebash
git push origin [topic]